2010-06-09 19:56:47 -07:00
|
|
|
class PetAttribute < StaticResource
|
2010-10-10 19:18:42 -07:00
|
|
|
def as_json(options={})
|
|
|
|
{
|
|
|
|
:id => self.id,
|
2010-11-05 15:45:05 -07:00
|
|
|
:name => self.human_name
|
2010-10-10 19:18:42 -07:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-11-05 15:45:05 -07:00
|
|
|
def human_name
|
|
|
|
self.name.capitalize
|
|
|
|
end
|
|
|
|
|
2010-11-06 08:52:58 -07:00
|
|
|
def self.find(id)
|
|
|
|
attribute = super
|
|
|
|
unless attribute
|
|
|
|
attribute = new
|
|
|
|
attribute.id = id
|
|
|
|
attribute.name = "color \##{id}"
|
|
|
|
end
|
|
|
|
attribute
|
|
|
|
end
|
|
|
|
|
2010-05-16 12:44:32 -07:00
|
|
|
def self.find_by_name(name)
|
|
|
|
@objects_by_name[name.downcase]
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2010-06-09 19:56:47 -07:00
|
|
|
def self.data_source
|
|
|
|
"#{to_s.downcase.pluralize}.txt"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.process_line(line)
|
|
|
|
name = line.chomp.downcase
|
|
|
|
@objects << @objects_by_name[name] = species = new
|
|
|
|
species.id = @objects.size
|
|
|
|
species.name = name
|
|
|
|
end
|
|
|
|
|
2010-05-16 12:44:32 -07:00
|
|
|
def self.fetch_objects!
|
|
|
|
@objects = []
|
|
|
|
@objects_by_name = {}
|
2010-06-09 19:56:47 -07:00
|
|
|
File.open(Rails.root.join('config', data_source)).each do |line|
|
|
|
|
process_line(line)
|
2010-05-16 12:44:32 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|