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
ginst-2009.11.23 vendor/rails/activesupport/lib/active_support/ordered_options.rb
ginst-2.0.1 vendor/rails/activesupport/lib/active_support/ordered_options.rb
ginst-2.0.0 vendor/rails/activesupport/lib/active_support/ordered_options.rb
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb
radiant-rc-0.9.0 vendor/rails/activesupport/lib/active_support/ordered_options.rb
activesupport-2.2.3 lib/active_support/ordered_options.rb
webroar-0.2.2 src/admin_panel/vendor/rails/activesupport/lib/active_support/ordered_options.rb
radiant-0.8.1 vendor/rails/activesupport/lib/active_support/ordered_options.rb
activesupport-2.3.4 lib/active_support/ordered_options.rb
activesupport-2.3.3 lib/active_support/ordered_options.rb
activesupport-2.3.2 lib/active_support/ordered_options.rb
activesupport-2.2.2 lib/active_support/ordered_options.rb
activesupport-2.1.2 lib/active_support/ordered_options.rb
activesupport-2.1.1 lib/active_support/ordered_options.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/ordered_options.rb
mack-facets-0.8.3.1 lib/gems/activesupport-2.2.2/lib/active_support/ordered_options.rb