Class: ActionSet::AttributeValue::ActiveModelAdapter
- Inherits:
-
Object
- Object
- ActionSet::AttributeValue::ActiveModelAdapter
- Defined in:
- lib/action_set/attribute_value.rb
Instance Method Summary collapse
-
#initialize(raw, target) ⇒ ActiveModelAdapter
constructor
A new instance of ActiveModelAdapter.
- #process ⇒ Object
Constructor Details
#initialize(raw, target) ⇒ ActiveModelAdapter
Returns a new instance of ActiveModelAdapter.
70 71 72 73 |
# File 'lib/action_set/attribute_value.rb', line 70 def initialize(raw, target) @raw = raw @target = target end |
Instance Method Details
#process ⇒ Object
75 76 77 78 79 |
# File 'lib/action_set/attribute_value.rb', line 75 def process return @raw if @raw.is_a? @target possible_values.find { |v| v.is_a? @target } end |