Method: Fastlane::FastFile#method_missing
- Defined in:
- fastlane/lib/fastlane/fast_file.rb
#method_missing(method_sym, *arguments, &_block) ⇒ Object
Is used to look if the method is implemented as an action
158 159 160 |
# File 'fastlane/lib/fastlane/fast_file.rb', line 158 def method_missing(method_sym, *arguments, &_block) self.runner.trigger_action_by_name(method_sym, nil, false, *arguments) end |