Class: String

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

Instance Method Summary collapse

Instance Method Details

#underscoreObject



35
36
37
38
39
40
41
# File 'lib/musicbrainz/models/base_model.rb', line 35

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