Sha256: b7db4bdb7379034cea6275d9ee2dd01ae62854f11487d3d7e6532494d9d9021c

Contents?: true

Size: 1.25 KB

Versions: 265

Compression:

Stored size: 1.25 KB

Contents

require 'active_support/ordered_hash'

# Usually key value pairs are handled something like this:
#
#   h = {}
#   h[:boy] = 'John'
#   h[:girl] = 'Mary'
#   h[:boy]  # => 'John'
#   h[:girl] # => 'Mary'
#
# Using <tt>OrderedOptions</tt>, the above code could be reduced to:
#
#   h = ActiveSupport::OrderedOptions.new
#   h.boy = 'John'
#   h.girl = 'Mary'
#   h.boy  # => 'John'
#   h.girl # => 'Mary'
#
module ActiveSupport #:nodoc:
  class OrderedOptions < OrderedHash
    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)
      if name.to_s =~ /(.*)=$/
        self[$1] = args.first
      else
        self[name]
      end
    end

    def respond_to?(name)
      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

265 entries across 221 versions & 25 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/ordered_options.rb
activesupport-3.2.22.5 lib/active_support/ordered_options.rb
activesupport-3.2.22.4 lib/active_support/ordered_options.rb
activesupport-3.2.22.3 lib/active_support/ordered_options.rb
activesupport-3.2.22.2 lib/active_support/ordered_options.rb
activesupport-3.2.22.1 lib/active_support/ordered_options.rb
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_options.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_options.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_options.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/ordered_options.rb
activesupport-3.2.22 lib/active_support/ordered_options.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/ordered_options.rb
activesupport-3.2.21 lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/ordered_options.rb
activesupport-3.2.20 lib/active_support/ordered_options.rb