Class: ActiveInteraction::GroupedInput
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- ActiveInteraction::GroupedInput
- Defined in:
- lib/active_interaction/grouped_input.rb,
lib/active_interaction/backports.rb
Overview
Instance Method Summary collapse
-
#[](name) ⇒ Object
Required for Ruby <= 1.9.3.
-
#[]=(name, value) ⇒ Object
Required for Ruby <= 1.9.3.
Instance Method Details
#[](name) ⇒ Object
Required for Ruby <= 1.9.3.
7 8 9 |
# File 'lib/active_interaction/backports.rb', line 7 def [](name) send(name) end |
#[]=(name, value) ⇒ Object
Required for Ruby <= 1.9.3.
12 13 14 |
# File 'lib/active_interaction/backports.rb', line 12 def []=(name, value) send("#{name}=", value) end |