Class: Gowalla::Category
- Inherits:
-
Object
- Object
- Gowalla::Category
- Defined in:
- lib/gowalla/category.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(data = {}) ⇒ Category
constructor
A new instance of Category.
Constructor Details
#initialize(data = {}) ⇒ Category
Returns a new instance of Category.
5 6 7 8 |
# File 'lib/gowalla/category.rb', line 5 def initialize(data={}) @name = data['name'] @url = data['url'] end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/gowalla/category.rb', line 3 def name @name end |
#url ⇒ Object
Returns the value of attribute url.
3 4 5 |
# File 'lib/gowalla/category.rb', line 3 def url @url end |