2013-01-21 14:01:41 -08:00
|
|
|
class Color < ActiveRecord::Base
|
|
|
|
translates :name
|
2010-05-16 13:15:21 -07:00
|
|
|
|
2013-01-26 22:25:52 -08:00
|
|
|
scope :alphabetical, lambda { with_translations(I18n.locale).order(Color::Translation.arel_table[:name]) }
|
2013-01-21 14:01:41 -08:00
|
|
|
scope :basic, where(:basic => true)
|
|
|
|
scope :standard, where(:standard => true)
|
|
|
|
scope :nonstandard, where(:standard => false)
|
2014-01-25 12:56:31 -08:00
|
|
|
|
|
|
|
validates :name, presence: true
|
2010-11-27 15:41:06 -08:00
|
|
|
|
2013-01-21 14:01:41 -08:00
|
|
|
def as_json(options={})
|
|
|
|
{:id => id, :name => human_name}
|
2010-11-27 15:41:06 -08:00
|
|
|
end
|
|
|
|
|
2013-01-21 14:01:41 -08:00
|
|
|
def human_name
|
2013-02-15 21:57:06 -08:00
|
|
|
if name
|
|
|
|
name.split(' ').map { |word| word.capitalize }.join(' ')
|
|
|
|
else
|
|
|
|
I18n.translate('colors.default_human_name')
|
|
|
|
end
|
2010-11-27 15:41:06 -08:00
|
|
|
end
|
2010-05-16 12:44:32 -07:00
|
|
|
end
|