Sha256: 6e6d76650c9487001b0acddd2f2237143d815e6d64ffe4661f5920bd48fbe48a

Contents?: true

Size: 1.28 KB

Versions: 30

Compression:

Stored size: 1.28 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

  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

30 entries across 30 versions & 2 rubygems

Version Path
activesupport-4.0.13 lib/active_support/ordered_options.rb
activesupport-4.0.13.rc1 lib/active_support/ordered_options.rb
activesupport-4.0.11.1 lib/active_support/ordered_options.rb
activesupport-4.0.12 lib/active_support/ordered_options.rb
activesupport-4.0.11 lib/active_support/ordered_options.rb
activesupport-4.0.10 lib/active_support/ordered_options.rb
activesupport-4.0.10.rc2 lib/active_support/ordered_options.rb
activesupport-4.0.10.rc1 lib/active_support/ordered_options.rb
activesupport-4.0.9 lib/active_support/ordered_options.rb
activesupport-4.0.8 lib/active_support/ordered_options.rb
activesupport-4.0.7 lib/active_support/ordered_options.rb
activesupport-4.0.6 lib/active_support/ordered_options.rb
activesupport-4.0.6.rc3 lib/active_support/ordered_options.rb
activesupport-4.0.6.rc2 lib/active_support/ordered_options.rb
activesupport-4.0.6.rc1 lib/active_support/ordered_options.rb
activesupport-4.0.5 lib/active_support/ordered_options.rb
activesupport-4.0.4 lib/active_support/ordered_options.rb
activesupport-4.0.4.rc1 lib/active_support/ordered_options.rb
activesupport-4.0.3 lib/active_support/ordered_options.rb
activesupport-4.0.2 lib/active_support/ordered_options.rb