Sha256: aa5de55da46f45962da72dd9e0cda8a3ecf31a8ce737cca07cadb62f0f8c7b89

Contents?: true

Size: 1.43 KB

Versions: 97

Compression:

Stored size: 1.43 KB

Contents

require "active_support"
require "active_support/core_ext"
require "cc/cli/version_checker"

module CC
  module CLI
    class Runner
      def self.run(argv)
        new(argv).run
      rescue => ex
        $stderr.puts("error: (#{ex.class}) #{ex.message}")
        CLI.logger.debug("backtrace: #{ex.backtrace.join("\n\t")}")
        exit 1
      end

      def initialize(args)
        @args = args
      end

      def run
        VersionChecker.new.check if check_version?

        if command_class
          command = command_class.new(command_arguments)
          command.execute
        else
          command_not_found
        end
      end

      def command_not_found
        $stderr.puts "unknown command #{command}"
        exit 1
      end

      def command_class
        command_const = Command[command]
        if command_const.abstract?
          nil
        else
          command_const
        end
      rescue NameError
        nil
      end

      def command_arguments
        Array(@args[1..-1])
      end

      def command
        command_name = @args.first
        case command_name
        when nil, "-h", "-?", "--help"
          "help"
        when "-v", "--version"
          "version"
        else
          command_name
        end
      end

      private

      def check_version?
        if ARGV.first == "--no-check-version"
          ARGV.shift
          false
        else
          true
        end
      end
    end
  end
end

Version data entries

97 entries across 97 versions & 2 rubygems

Version Path
codeclimate-0.96.0 lib/cc/cli/runner.rb
codeclimate-0.95.0 lib/cc/cli/runner.rb
codeclimate-0.94.1 lib/cc/cli/runner.rb
codeclimate-0.94.0 lib/cc/cli/runner.rb
codeclimate-0.93.0 lib/cc/cli/runner.rb
codeclimate-0.92.1 lib/cc/cli/runner.rb
codeclimate-0.92.0 lib/cc/cli/runner.rb
codeclimate-0.91.0 lib/cc/cli/runner.rb
codeclimate-0.90.0 lib/cc/cli/runner.rb
codeclimate-0.89.0 lib/cc/cli/runner.rb
codeclimate-0.88.0 lib/cc/cli/runner.rb
codeclimate-0.87.5 lib/cc/cli/runner.rb
codeclimate-0.87.4 lib/cc/cli/runner.rb
codeclimate-0.87.3 lib/cc/cli/runner.rb
codeclimate-0.87.2 lib/cc/cli/runner.rb
codeclimate-0.87.1 lib/cc/cli/runner.rb
codeclimate-0.87.0 lib/cc/cli/runner.rb
codeclimate-0.86.0 lib/cc/cli/runner.rb
codeclimate-0.85.29 lib/cc/cli/runner.rb
codeclimate-0.85.28 lib/cc/cli/runner.rb