Sha256: 40024dd531ee2ae2afcf6b00adb46518512e589cb810de448b9b2d71a000fa2d
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
require 'polytrix' require 'mixlib/shellout' require 'rbconfig' module Polytrix module Runners autoload :LinuxChallengeRunner, 'polytrix/runners/linux_challenge_runner' autoload :WindowsChallengeRunner, 'polytrix/runners/windows_challenge_runner' end class ChallengeRunner < Thor::Shell::Color include Polytrix::Core::FileSystemHelper include Polytrix::Executor def self.create_runner case RbConfig::CONFIG['host_os'] when /mswin(\d+)|mingw/i Runners::WindowsChallengeRunner.new else Runners::LinuxChallengeRunner.new end end def editor_enabled? !challenge_editor.nil? end def challenge_editor ENV['CHALLENGE_EDITOR'] end def run_command(command) if Polytrix.configuration.dry_run puts "Would have run #{command}" else say_status 'polytrix:execute', command execute command end end def run_challenge(challenge) middleware.call(challenge) challenge end private def middleware Polytrix.configuration.middleware end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
polytrix-0.1.0.pre | lib/polytrix/challenge_runner.rb |