Class: Shutterstock::Categories
- Inherits:
-
Array
- Object
- Array
- Shutterstock::Categories
- Defined in:
- lib/client/categories.rb
Instance Attribute Summary collapse
-
#raw_data ⇒ Object
readonly
Returns the value of attribute raw_data.
Instance Method Summary collapse
-
#initialize(raw_data) ⇒ Categories
constructor
A new instance of Categories.
Constructor Details
#initialize(raw_data) ⇒ Categories
Returns a new instance of Categories.
4 5 6 7 8 |
# File 'lib/client/categories.rb', line 4 def initialize(raw_data) @raw_data = raw_data super( @raw_data.map{ |cat| Category.new(cat) } ) self end |
Instance Attribute Details
#raw_data ⇒ Object (readonly)
Returns the value of attribute raw_data.
3 4 5 |
# File 'lib/client/categories.rb', line 3 def raw_data @raw_data end |