Class: ActiveInteraction::GroupedInput

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/active_interaction/grouped_input.rb,
lib/active_interaction/backports.rb

Overview

Holds a group of inputs together for passing from Base to Filters.

Since:

  • 1.2.0

Instance Method Summary collapse

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