Sha256: e3657409bd414e978d4dc723fed7cbc374d9c6fe9d0ced41a98ef7bb84bbd40d
Contents?: true
Size: 1.72 KB
Versions: 4
Compression:
Stored size: 1.72 KB
Contents
require "aruba" require "aruba/cucumber" require "csvlint/cli" module Csvlint class CliRunner # Allow everything fun to be injected from the outside while defaulting to normal implementations. def initialize(argv, stdin = $stdin, stdout = $stdout, stderr = $stderr, kernel = Kernel) @argv, @stdin, @stdout, @stderr, @kernel = argv, stdin, stdout, stderr, kernel end def execute! exit_code = begin # Thor accesses these streams directly rather than letting them be injected, so we replace them... $stderr = @stderr $stdin = @stdin $stdout = @stdout # Run our normal Thor app the way we know and love. Csvlint::Cli.start(@argv.dup.unshift("validate")) # Thor::Base#start does not have a return value, assume success if no exception is raised. 0 rescue => e # The ruby interpreter would pipe this to STDERR and exit 1 in the case of an unhandled exception b = e.backtrace @stderr.puts("#{b.shift}: #{e.message} (#{e.class})") @stderr.puts(b.map { |s| "\tfrom #{s}" }.join("\n")) 1 rescue SystemExit => e e.status ensure # TODO: reset your app here, free up resources, etc. # Examples: # MyApp.logger.flush # MyApp.logger.close # MyApp.logger = nil # # MyApp.reset_singleton_instance_variables # ...then we put the streams back. $stderr = STDERR $stdin = STDIN $stdout = STDOUT end # Proxy our exit code back to the injected kernel. @kernel.exit(exit_code) end end end Aruba.configure do |config| config.command_launcher = :in_process config.main_class = Csvlint::CliRunner end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
csvlint-1.4.0 | features/support/aruba.rb |
csvlint-1.3.0 | features/support/aruba.rb |
csvlint-1.2.0 | features/support/aruba.rb |
csvlint-1.1.0 | features/support/aruba.rb |