Methods
- #
- M
- R
Instance Public methods
Also aliased as: _get
Source: show
# File activesupport/lib/active_support/ordered_options.rb, line 28 def [](key) super(key.to_sym) end
Source: show
# File activesupport/lib/active_support/ordered_options.rb, line 24 def []=(key, value) super(key.to_sym, value) end
Source: show
# 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
Source: show
# File activesupport/lib/active_support/ordered_options.rb, line 40 def respond_to?(name) true end