Class: String

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

Instance Method Summary collapse

Instance Method Details

#underscoreObject

A copy of Rails’ ActiveSupport underscore method



31
32
33
34
35
36
37
# File 'lib/pxpay/notification.rb', line 31

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