Sha256: 71cf1ffe72d9a326d914b14074b3e965d05d372e692ea555b5c46e55addf5db3

Contents?: true

Size: 531 Bytes

Versions: 1

Compression:

Stored size: 531 Bytes

Contents

require "thor/core_ext/hash_with_indifferent_access"

module Carrasco
  class Command
    attr_reader :command_name, :command, :description, :help
    alias_method :to_s, :command

    def initialize(command_name, options = {})
      options = Thor::CoreExt::HashWithIndifferentAccess.new(options)
      @command_name = command_name
      @command      = options[:command] || command_name
      @help         = options[:help] || command_name
      @description  = options[:description] || "description not given"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
carrasco-0.1.5 lib/carrasco/command.rb