Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/fastr/extensions/string.rb

Instance Method Summary collapse

Instance Method Details

#camelcaseObject



2
3
4
5
6
7
8
9
# File 'lib/fastr/extensions/string.rb', line 2

def camelcase
  split = self.split('_')
  newStr = []
  
  split.each { |s| newStr << s.capitalize }
  
  newStr.join('')
end

#uncamelcaseObject



11
12
13
14
15
16
17
# File 'lib/fastr/extensions/string.rb', line 11

def uncamelcase
  self.gsub(/::/, '/').
    gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
    gsub(/([a-z\d])([A-Z])/,'\1_\2').
    tr("-", "_").
    downcase
end