Class Index [+]

Quicksearch

ActiveSupport::OrderedOptions

Public Instance Methods

[](key) click to toggle source
    # File lib/active_support/ordered_options.rb, line 28
28:     def [](key)
29:       super(key.to_sym)
30:     end
Also aliased as: _get
[]=(key, value) click to toggle source
    # File lib/active_support/ordered_options.rb, line 24
24:     def []=(key, value)
25:       super(key.to_sym, value)
26:     end
_get(key) click to toggle source
Alias for: []
method_missing(name, *args) click to toggle source
    # File lib/active_support/ordered_options.rb, line 32
32:     def method_missing(name, *args)
33:       if name.to_s =~ /(.*)=$/
34:         self[$1] = args.first
35:       else
36:         self[name]
37:       end
38:     end
respond_to?(name) click to toggle source
    # File lib/active_support/ordered_options.rb, line 40
40:     def respond_to?(name)
41:       true
42:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.