Method: Cloudinary::Search.method_missing
- Defined in:
- lib/cloudinary/search.rb
.method_missing(method_name, *arguments) ⇒ Object
implicitly generate an instance delegate the method
26 27 28 29 |
# File 'lib/cloudinary/search.rb', line 26 def self.method_missing(method_name, *arguments) instance = new instance.send(method_name, *arguments) end |