Method: DataMapper::Hook::ClassMethods#quote_method
- Defined in:
- lib/dm-core/support/hook.rb
#quote_method(name) ⇒ Object
396 397 398 |
# File 'lib/dm-core/support/hook.rb', line 396 def quote_method(name) name.to_s.gsub(/\?$/, '_q_').gsub(/!$/, '_b_').gsub(/=$/, '_eq_') end |