Class: Polytrix::Command::Action
- Includes:
- RunAction
- Defined in:
- lib/polytrix/command/action.rb
Constant Summary collapse
- IMPLEMENTOR_ACTIONS =
These are run once per implementor, not per test
[:clone, :bootstrap]
Instance Method Summary collapse
-
#call ⇒ Object
Invoke the command.
Methods included from RunAction
Methods inherited from Base
Methods included from Util::FileSystem
Methods included from Util::String
Methods included from Util::String::ClassMethods
#ansi2html, #escape_html, #highlight, #slugify
Methods included from DefaultLogger
Methods included from DefaultLogger::ClassMethods
Constructor Details
This class inherits a constructor from Polytrix::Command::Base
Instance Method Details
#call ⇒ Object
Invoke the command.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/polytrix/command/action.rb', line 11 def call "Starting Polytrix (v#{Polytrix::VERSION})" elapsed = Benchmark.measure do setup tests = parse_subcommand(args.pop) implementors = tests.map(&:implementor).uniq if IMPLEMENTOR_ACTIONS.include? action # actions on implementors run_action(action, implementors) else # actions on tests run_action(action, tests) end end "Polytrix is finished. #{Util.duration(elapsed.real)}" end |