Sha256: 262718cd7e3a2f13c93584be296936b41e5d70c3c16610e5c941f460abdabc06

Contents?: true

Size: 1.62 KB

Versions: 102

Compression:

Stored size: 1.62 KB

Contents

module ActiveSupport
  # Usually key value pairs are handled something like this:
  #
  #   h = {}
  #   h[:boy] = 'John'
  #   h[:girl] = 'Mary'
  #   h[:boy]  # => 'John'
  #   h[:girl] # => 'Mary'
  #
  # Using +OrderedOptions+, the above code could be reduced to:
  #
  #   h = ActiveSupport::OrderedOptions.new
  #   h.boy = 'John'
  #   h.girl = 'Mary'
  #   h.boy  # => 'John'
  #   h.girl # => 'Mary'
  class OrderedOptions < Hash
    alias_method :_get, :[] # preserve the original #[] method
    protected :_get # make it protected

    def []=(key, value)
      super(key.to_sym, value)
    end

    def [](key)
      super(key.to_sym)
    end

    def method_missing(name, *args)
      name_string = name.to_s
      if name_string.chomp!('=')
        self[name_string] = args.first
      else
        self[name]
      end
    end

    def respond_to_missing?(name, include_private)
      true
    end
  end

  # +InheritableOptions+ provides a constructor to build an +OrderedOptions+
  # hash inherited from another hash.
  #
  # Use this if you already have some hash and you want to create a new one based on it.
  #
  #   h = ActiveSupport::InheritableOptions.new({ girl: 'Mary', boy: 'John' })
  #   h.girl # => 'Mary'
  #   h.boy  # => 'John'
  class InheritableOptions < OrderedOptions
    def initialize(parent = nil)
      if parent.kind_of?(OrderedOptions)
        # use the faster _get when dealing with OrderedOptions
        super() { |h,k| parent._get(k) }
      elsif parent
        super() { |h,k| parent[k] }
      else
        super()
      end
    end

    def inheritable_copy
      self.class.new(self)
    end
  end
end

Version data entries

102 entries across 97 versions & 12 rubygems

Version Path
activesupport-4.2.1 lib/active_support/ordered_options.rb
activesupport-4.1.10.rc4 lib/active_support/ordered_options.rb
activesupport-4.2.1.rc4 lib/active_support/ordered_options.rb
activesupport-4.1.10.rc3 lib/active_support/ordered_options.rb
activesupport-4.2.1.rc3 lib/active_support/ordered_options.rb
activesupport-4.1.10.rc2 lib/active_support/ordered_options.rb
activesupport-4.2.1.rc2 lib/active_support/ordered_options.rb
activesupport-4.1.10.rc1 lib/active_support/ordered_options.rb
activesupport-4.2.1.rc1 lib/active_support/ordered_options.rb
activejob-lock-0.0.1 rails/activesupport/lib/active_support/ordered_options.rb
activesupport-4.1.9 lib/active_support/ordered_options.rb
activesupport-4.1.9.rc1 lib/active_support/ordered_options.rb
activesupport-4.2.0 lib/active_support/ordered_options.rb
activesupport-4.2.0.rc3 lib/active_support/ordered_options.rb
activesupport-4.2.0.rc2 lib/active_support/ordered_options.rb
activesupport-4.2.0.rc1 lib/active_support/ordered_options.rb
activesupport-4.1.7.1 lib/active_support/ordered_options.rb
activesupport-4.1.8 lib/active_support/ordered_options.rb
activesupport-4.2.0.beta4 lib/active_support/ordered_options.rb
activesupport-4.2.0.beta3 lib/active_support/ordered_options.rb