class NoradSpecRunner::Cli

Drives the CLI for norad_spec_runner

Public Instance Methods

local() click to toggle source

FIXME: this class doesn't exist any more

# File lib/norad_spec_runner/cli.rb, line 40
def local
  spectask = NoradSpecRunner::Task.new(options[:tests], options[:results_file])
  spectask.run
end
remote(encoded_key) click to toggle source
# File lib/norad_spec_runner/cli.rb, line 27
def remote(encoded_key)
  spectask = NoradSpecRunner::RemoteTask.new(encoded_key, options)
  spectask.run
end