Class: Shoppr::Attribute
- Inherits:
-
Object
- Object
- Shoppr::Attribute
- Defined in:
- lib/shoppr/attribute.rb
Instance Method Summary collapse
-
#initialize(cat_mash) ⇒ Attribute
constructor
A new instance of Attribute.
Constructor Details
#initialize(cat_mash) ⇒ Attribute
Returns a new instance of Attribute.
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/shoppr/attribute.rb', line 4 def initialize(cat_mash) Shoppr.map_mash_attrs(self, cat_mash) if self.attribute_values.attributeValue.is_a?(Array) @attribute_values = self.attribute_values.attributeValue.map {|f| AttributeValue.new(f)} elsif self.attribute_values.attributeValue @attribute_values = [AttributeValue.new(self.attribute_values.attributeValue)] else @attribute_values = [] end end |