Method: Animoto::Support::String#camelize
- Defined in:
- lib/animoto/support/string.rb
#camelize ⇒ String
Transforms this string from underscore-form to camel case. Capitalizes the first letter.
12 13 14 |
# File 'lib/animoto/support/string.rb', line 12 def camelize self.gsub(/(?:^|_)(.)/) { $1.upcase } end |