Class Index [+]

Quicksearch

ActiveSupport::OrderedOptions

Public Instance Methods

[](key) click to toggle source
    # File lib/active_support/ordered_options.rb, line 9
 9:     def [](key)
10:       super(key.to_sym)
11:     end
[]=(key, value) click to toggle source
   # File lib/active_support/ordered_options.rb, line 5
5:     def []=(key, value)
6:       super(key.to_sym, value)
7:     end
method_missing(name, *args) click to toggle source
    # File lib/active_support/ordered_options.rb, line 13
13:     def method_missing(name, *args)
14:       if name.to_s =~ /(.*)=$/
15:         self[$1.to_sym] = args.first
16:       else
17:         self[name]
18:       end
19:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.