Method: Logical::Naf::Job#method_missing
- Defined in:
- app/models/logical/naf/job.rb
#method_missing(method_name, *arguments, &block) ⇒ Object
65 66 67 68 69 70 71 |
# File 'app/models/logical/naf/job.rb', line 65 def method_missing(method_name, *arguments, &block) if @job.respond_to?(method_name) @job.send(method_name, *arguments, &block) else super end end |