Method: RR::GenerateRunner.run
- Defined in:
- lib/rubyrep/generate_runner.rb
.run(args) ⇒ Object
Entry points for executing a processing run. args: the array of command line options that were provided by the user.
92 93 94 95 96 97 98 99 100 |
# File 'lib/rubyrep/generate_runner.rb', line 92 def self.run(args) runner = new status = runner.(args) if runner. runner.execute end status end |