Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/cloudstack_spec.rb
Instance Method Summary collapse
Instance Method Details
#to_camel_case ⇒ Object
31 32 33 34 |
# File 'lib/cloudstack_spec.rb', line 31 def to_camel_case return self if self !~ /_/ && self =~ /[A-Z]+.*/ split('_').map{|e| e.capitalize}.join end |
#to_snake_case ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/cloudstack_spec.rb', line 23 def to_snake_case self.gsub(/::/, '/'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). tr("-", "_"). downcase end |