Sha256: 454c6b3c79884fb603939a98f485fe8975bf30e36f17b34a33072b06b7aba0e0

Contents?: true

Size: 351 Bytes

Versions: 184

Compression:

Stored size: 351 Bytes

Contents

module ActiveSupport #:nodoc:
  class OrderedOptions < OrderedHash #:nodoc:
    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.to_sym] = args.first
      else
        self[name]
      end
    end
  end
end

Version data entries

184 entries across 151 versions & 22 rubygems

Version Path
activesupport-2.3.17 lib/active_support/ordered_options.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/ordered_options.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/ordered_options.rb
activesupport_csi-2.3.5.p7 lib/active_support/ordered_options.rb
activesupport_csi-2.3.5.p6 lib/active_support/ordered_options.rb
activesupport-2.3.16 lib/active_support/ordered_options.rb
activesupport-2.3.15 lib/active_support/ordered_options.rb
abiquo-etk-0.6.4 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
abiquo-etk-0.6.3 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
abiquo-etk-0.6.2 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
abiquo-etk-0.6.1 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
abiquo-etk-0.6.0 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
abiquo-etk-0.5.9 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/ordered_options.rb
abiquo-etk-0.5.8 vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/activesupport-2.3.12/lib/active_support/ordered_options.rb
activesupport-2.3.14 lib/active_support/ordered_options.rb
kajam-1.0.3.rc2 vendor/rails/activesupport/lib/active_support/ordered_options.rb
activesupport-2.3.12 lib/active_support/ordered_options.rb
radiant-1.0.0.rc2 vendor/rails/activesupport/lib/active_support/ordered_options.rb