Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/musicbrainz/models/base_model.rb

Instance Method Summary collapse

Instance Method Details

#underscoreObject



40
41
42
43
44
45
46
# File 'lib/musicbrainz/models/base_model.rb', line 40

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