Skip to content

Instantly share code, notes, and snippets.

@ciscodesign
ciscodesign / NewsletterService.rb
Created August 3, 2012 14:55
a class for connecting to mailchimp, with gibbon gem
# encoding: UTF-8
# this is a class for connecting to mailchimp, with gibbon gem
class NewsletterService
def connect
@u = Gibbon.new(MC_API_KEY)
@u.throws_exceptions = true
@u
end
@ciscodesign
ciscodesign / Helper
Created March 18, 2012 22:51
Helper to use Font Awesome with Rails
def icon(name, size=1)
#icon("camera-retro")
#<i class="icon-camera-retro"></i>
html = "<i class='icon-#{name}' "
html += "style='font-size:#{size}em' "
html += "></i>"
html.html_safe
end