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
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/ordered_options.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/ordered_options.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/ordered_options.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/ordered_options.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/ordered_options.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/ordered_options.rb