Class: OrderedOptions

Inherits:
ActiveSupport::OrderedHash show all
Defined in:
lib/active_support/ordered_options.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from ActiveSupport::OrderedHash

#keys, #values

Methods inherited from Array

#to_query

Methods included from ActiveSupport::CoreExtensions::Array::Grouping

#in_groups_of, #split

Methods included from ActiveSupport::CoreExtensions::Array::Conversions

included, #to_formatted_s, #to_param, #to_sentence, #to_xml

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object



37
38
39
40
41
42
43
# File 'lib/active_support/ordered_options.rb', line 37

def method_missing(name, *args)
  if name.to_s =~ /(.*)=$/
    self[$1.to_sym] = args.first
  else
    self[name]
  end
end

Instance Method Details

#[](key) ⇒ Object



33
34
35
# File 'lib/active_support/ordered_options.rb', line 33

def [](key)
  super(key.to_sym)
end

#[]=(key, value) ⇒ Object



29
30
31
# File 'lib/active_support/ordered_options.rb', line 29

def []=(key, value)
  super(key.to_sym, value)
end