Sha256: 2609b7b4810f2f1064efd9276b0daf638844a4fade4c96d7919615d92d75d559

Contents?: true

Size: 1.79 KB

Versions: 349

Compression:

Stored size: 1.79 KB

Contents

class Thor
  module CoreExt #:nodoc:

    # A hash with indifferent access and magic predicates.
    #
    #   hash = Thor::CoreExt::HashWithIndifferentAccess.new 'foo' => 'bar', 'baz' => 'bee', 'force' => true
    #
    #   hash[:foo]  #=> 'bar'
    #   hash['foo'] #=> 'bar'
    #   hash.foo?   #=> true
    #
    class HashWithIndifferentAccess < ::Hash #:nodoc:

      def initialize(hash={})
        super()
        hash.each do |key, value|
          self[convert_key(key)] = value
        end
      end

      def [](key)
        super(convert_key(key))
      end

      def []=(key, value)
        super(convert_key(key), value)
      end

      def delete(key)
        super(convert_key(key))
      end

      def values_at(*indices)
        indices.collect { |key| self[convert_key(key)] }
      end

      def merge(other)
        dup.merge!(other)
      end

      def merge!(other)
        other.each do |key, value|
          self[convert_key(key)] = value
        end
        self
      end

      # Convert to a Hash with String keys.
      def to_hash
        Hash.new(default).merge!(self)
      end

      protected

        def convert_key(key)
          key.is_a?(Symbol) ? key.to_s : key
        end

        # Magic predicates. For instance:
        #
        #   options.force?                  # => !!options['force']
        #   options.shebang                 # => "/usr/lib/local/ruby"
        #   options.test_framework?(:rspec) # => options[:test_framework] == :rspec
        #
        def method_missing(method, *args, &block)
          method = method.to_s
          if method =~ /^(\w+)\?$/
            if args.empty?
              !!self[$1]
            else
              self[$1] == args.first
            end
          else
            self[method]
          end
        end

    end
  end
end

Version data entries

349 entries across 335 versions & 27 rubygems

Version Path
skylight-6.1.0.beta lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.4 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.3 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.5 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.2 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.1 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.0 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.0.beta2 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-6.0.0.beta lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.4 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.3 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.2 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.1 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.3.0 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.2.0 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
vagrant-unbundled-2.2.19.0 vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.2.0.beta2 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
vagrant-unbundled-2.2.18.0 vendor/bundle/ruby/3.0.0/gems/thor-0.18.1/lib/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.2.0.beta lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb
skylight-5.1.1 lib/skylight/vendor/cli/thor/core_ext/hash_with_indifferent_access.rb