Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/sweetsie/generators/helper.rb
Instance Method Summary collapse
-
#camelcase ⇒ Object
Create a camelcase version of the name that is passed.
Instance Method Details
#camelcase ⇒ Object
Create a camelcase version of the name that is passed.
3 4 5 |
# File 'lib/sweetsie/generators/helper.rb', line 3 def camelcase self.split('_').map{|e| e.capitalize}.join end |