Last active
August 29, 2015 14:23
-
-
Save rjhornsby/6db2760db605bea6f865 to your computer and use it in GitHub Desktop.
Ruby Song class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Song | |
# TODO: enforce limits on the input | |
attr_accessor :title | |
attr_accessor :artist | |
attr_accessor :album | |
attr_accessor :remarks | |
attr_accessor :url | |
attr_accessor :error | |
def initialize( | |
title = nil, | |
artist = nil, | |
album = nil, | |
remarks = nil, | |
url = nil | |
) | |
@title = title | |
@artist = artist | |
@album = album | |
@remarks = remarks | |
@url = url | |
end | |
def to_json(*a) | |
puts "Making a json string from a #{self.class.name}" | |
{ | |
'json_class' => self.class.name, | |
'data' => { | |
:title => title, | |
:artist => artist, | |
:album => album, | |
:remarks => remarks, | |
:url => url | |
} | |
}.to_json(*a) | |
end | |
def self.json_create(*o) | |
puts "Making a #{self.class.name}" | |
pp o | |
new( | |
o[0]['data']['title'], | |
o[0]['data']['artist'], | |
o[0]['data']['album'], | |
o[0]['data']['remarks'], | |
o[0]['data']['url'] | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment