Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/pxpay/notification.rb
Instance Method Summary collapse
-
#underscore ⇒ Object
A copy of Rails’ ActiveSupport underscore method.
Instance Method Details
#underscore ⇒ Object
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 |