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::RandomAccess

#rand

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

#in_groups_of, #split

Methods included from ActiveSupport::CoreExtensions::Array::ExtractOptions

#extract_options!

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

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

Methods included from ActiveSupport::CoreExtensions::Array::Access

#from, #to

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/active_support/ordered_options.rb', line 42

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



38
39
40
# File 'lib/active_support/ordered_options.rb', line 38

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

#[]=(key, value) ⇒ Object



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

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