Sha256: 6d210852e0b6e9847a40f865ffe5fd23095be7bb65b60a12065a69ae66aa1a6e

Contents?: true

Size: 1.77 KB

Versions: 97

Compression:

Stored size: 1.77 KB

Contents

require "highline"
require "active_support"
require "active_support/core_ext"
require "rainbow"
require "cc/cli/output"

module CC
  module CLI
    class Command
      include CC::CLI::Output

      CODECLIMATE_YAML = ".codeclimate.yml".freeze
      NAMESPACE = name.split("::")[0..-2].join("::").freeze

      def self.abstract!
        @abstract = true
      end

      def self.abstract?
        @abstract == true
      end

      def self.all
        @@subclasses.reject(&:abstract?)
      end

      def self.[](name)
        all.find { |command| command.name == "#{NAMESPACE}::#{name}" || command.command_name == name }
      end

      # rubocop: disable Style/ClassVars
      def self.inherited(subclass)
        @@subclasses ||= []
        @@subclasses << subclass
      end
      # rubocop: enable Style/ClassVars

      def self.synopsis
        "#{command_name} #{self::ARGUMENT_LIST if const_defined?(:ARGUMENT_LIST)}".strip
      end

      def self.short_help
        if const_defined? :SHORT_HELP
          self::SHORT_HELP
        else
          ""
        end
      end

      def self.help
        if const_defined? :HELP
          self::HELP
        else
          short_help
        end
      end

      def initialize(args = [])
        @args = args
      end

      def run
        $stderr.puts "unknown command #{self.class.name.split("::").last.underscore}"
      end

      def self.command_name
        name.gsub(/^#{NAMESPACE}::/, "").split("::").map do |part|
          part.split(/(?=[A-Z])/).map(&:downcase).join("-")
        end.join(":")
      end

      def execute
        run
      end

      private

      def filesystem
        @filesystem ||= CC::Analyzer::Filesystem.new(
          CC::Analyzer::MountedPath.code.container_path,
        )
      end
    end
  end
end

Version data entries

97 entries across 97 versions & 2 rubygems

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