Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/puppet_library/util/patches.rb
Instance Method Summary collapse
Instance Method Details
#snake_case_to_camel_case ⇒ Object
93 94 95 |
# File 'lib/puppet_library/util/patches.rb', line 93 def snake_case_to_camel_case split("_").map(&:capitalize).join end |