Skip to content

Instantly share code, notes, and snippets.

@foliea
Created April 15, 2014 15:05
Show Gist options
  • Save foliea/10739942 to your computer and use it in GitHub Desktop.
Save foliea/10739942 to your computer and use it in GitHub Desktop.
class OmniauthProviderDecorator
@@decorations =
{
linkedin: { icon: 'linkedin-square', class: 'primary' },
twitter: { icon: 'twitter-square', class: 'info' },
github: { icon: 'github', class: 'default' },
google_oauth2: { icon: 'google-plus-square', class: 'danger' }
}
def initialize(provider)
@provider = provider
end
def title
@provider.to_s.titleize
end
def icon
@@decorations[@provider][:icon]
end
def classes
"btn btn-#{@@decorations[@provider][:class]}"
end
def to_sym
@provider
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment