Sha256: a85555b3717d8ada18712bbd0798e61b56093115fcad6c9fdf83eaf0015fde51

Contents?: true

Size: 623 Bytes

Versions: 31

Compression:

Stored size: 623 Bytes

Contents

require "thor/core_ext/hash_with_indifferent_access"

module Guard
  # A class that holds options. Can be instantiated with default options.
  #
  class Options < Thor::CoreExt::HashWithIndifferentAccess
    # Initializes an Guard::Options object. `default_opts` is merged into
    # `opts`.
    #
    # @param [Hash] opts the options
    # @param [Hash] default_opts the default options
    #
    def initialize(opts = {}, default_opts = {})
      super(default_opts.merge(opts || {}))
    end

    # workaround for: https://github.com/erikhuda/thor/issues/504
    def fetch(name)
      super(name.to_s)
    end
  end
end

Version data entries

31 entries across 31 versions & 7 rubygems

Version Path
guard-2.16.1 lib/guard/options.rb
guard-2.16.0 lib/guard/options.rb
guard-2.15.1 lib/guard/options.rb
alimentos-alu0100945645-0.1.0 vendor/bundle/ruby/2.3.0/gems/guard-2.15.0/lib/guard/options.rb
alimentos-alu0100945645-1.0.0 vendor/bundle/ruby/2.3.0/gems/guard-2.15.0/lib/guard/options.rb
guard-2.15.0 lib/guard/options.rb
guard-2.14.2 lib/guard/options.rb
comiditaULL-0.1.1 vendor/bundle/ruby/2.3.0/gems/guard-2.14.1/lib/guard/options.rb
comidita_ull-0.1.1 vendor/bundle/ruby/2.3.0/gems/guard-2.14.1/lib/guard/options.rb
comidita_ull-0.1.0 vendor/bundle/ruby/2.3.0/gems/guard-2.14.1/lib/guard/options.rb
guard-2.14.1 lib/guard/options.rb