Methods
#
M
R
Instance Public methods
[](key)
Also aliased as: _get
# File activesupport/lib/active_support/ordered_options.rb, line 28
def [](key)
  super(key.to_sym)
end
[]=(key, value)
# File activesupport/lib/active_support/ordered_options.rb, line 24
def []=(key, value)
  super(key.to_sym, value)
end
_get(key)
method_missing(name, *args)
# File activesupport/lib/active_support/ordered_options.rb, line 32
def method_missing(name, *args)
  if name.to_s =~ /(.*)=$/
    self[$1] = args.first
  else
    self[name]
  end
end
respond_to?(name)
# File activesupport/lib/active_support/ordered_options.rb, line 40
def respond_to?(name)
  true
end