Method: Audiosearch::Response#method_missing
- Defined in:
- lib/audiosearch.rb
#method_missing(meth, *args, &block) ⇒ Object
212 213 214 215 216 217 218 |
# File 'lib/audiosearch.rb', line 212 def method_missing(meth, *args, &block) if @http_resp.body.respond_to? meth @http_resp.body.send(meth, *args, &block) else super end end |