Method: Flattr.method_missing
- Defined in:
- lib/flattr.rb
.method_missing(method, *args, &block) ⇒ Object
13 14 15 16 |
# File 'lib/flattr.rb', line 13 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end |