Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/paynet_easy/paynet_easy_api/util/string.rb
Instance Method Summary collapse
-
#camelize ⇒ String
Convert string from format <this_is_the_string> or <this-is-the-string> to format <ThisIsTheString>.
Instance Method Details
#camelize ⇒ String
Convert string from format <this_is_the_string> or <this-is-the-string> to format <ThisIsTheString>
6 7 8 |
# File 'lib/paynet_easy/paynet_easy_api/util/string.rb', line 6 def camelize split(/_|-/).map(&:capitalize).join('') end |