Module: OmniAuth::Utils

Defined in:
lib/omniauth/core.rb

Constant Summary collapse

CAMELIZE_SPECIAL =
{
  'oauth' => 'OAuth',
  'oauth2' => 'OAuth2',
  'openid' => 'OpenID',
  'open_id' => 'OpenID',
  'github' => 'GitHub',
  'tripit' => 'TripIt',
  'soundcloud' => 'SoundCloud',
  'smugmug' => 'SmugMug',
  'cas' => 'CAS',
  'trademe' => 'TradeMe',
  'ldap'  => 'LDAP',
  'google_oauth2' => 'GoogleOAuth2'
}

Class Method Summary collapse

Class Method Details

.camelize(word, first_letter_in_uppercase = true) ⇒ Object



130
131
132
133
134
135
136
137
138
# File 'lib/omniauth/core.rb', line 130

def camelize(word, first_letter_in_uppercase = true)
  return CAMELIZE_SPECIAL[word.to_s] if CAMELIZE_SPECIAL[word.to_s]

  if first_letter_in_uppercase
    word.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase }
  else
    word.first + camelize(word)[1..-1]
  end
end

.deep_merge(hash, other_hash) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/omniauth/core.rb', line 115

def deep_merge(hash, other_hash)
  target = hash.dup

  other_hash.keys.each do |key|
    if other_hash[key].is_a? ::Hash and hash[key].is_a? ::Hash
      target[key] = deep_merge(target[key],other_hash[key])
      next
    end

    target[key] = other_hash[key]
  end

  target
end

.form_cssObject



111
112
113
# File 'lib/omniauth/core.rb', line 111

def form_css
  "<style type='text/css'>#{OmniAuth.config.form_css}</style>"
end