Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/indix.rb

Instance Method Summary collapse

Instance Method Details

#underscoreObject

borrowed from ActiveSupport



12
13
14
15
16
17
18
19
20
# File 'lib/indix.rb', line 12

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