Method: HDB#method_missing
- Defined in:
- lib/hdb/hdb.rb
#method_missing(methodeName, *args) ⇒ Object
107 108 109 |
# File 'lib/hdb/hdb.rb', line 107 def method_missing(methodeName, *args) return eval("HODB.new($1, @connectionName).find_by_#{$2}(*args)") if methodeName.to_s =~ /^find_on_(.+)_by_(.+)$/ end |