Class: Vagalume::Artist
- Inherits:
-
Object
- Object
- Vagalume::Artist
- Defined in:
- lib/vagalume/artist.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(artist) ⇒ Artist
constructor
A new instance of Artist.
Constructor Details
#initialize(artist) ⇒ Artist
Returns a new instance of Artist.
5 6 7 8 9 |
# File 'lib/vagalume/artist.rb', line 5 def initialize(artist) @id = artist["id"] @name = artist["name"] @url = artist["url"] end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
3 4 5 |
# File 'lib/vagalume/artist.rb', line 3 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/vagalume/artist.rb', line 3 def name @name end |
#url ⇒ Object
Returns the value of attribute url.
3 4 5 |
# File 'lib/vagalume/artist.rb', line 3 def url @url end |