Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/twitter/core_ext/string.rb
Instance Method Summary collapse
-
#camelize ⇒ String
Converts a snake_case string to CamelCase.
Instance Method Details
#camelize ⇒ String
Converts a snake_case string to CamelCase
6 7 8 |
# File 'lib/twitter/core_ext/string.rb', line 6 def camelize self.gsub(/\/(.?)/){"::#{$1.upcase}"}.gsub(/(?:^|_)(.)/){$1.upcase} end |