impress/app/models/color.rb
Matchu eaf875c6c7 zone, species, color alphabetical by the current locale
We were joining to the translations table to sort records
alphabetically, but then it sorted by *all* of the translations in
some strange way. Now use with_translations to restrict the join
to the current locale.
2013-01-27 00:25:52 -06:00

16 lines
457 B
Ruby

class Color < ActiveRecord::Base
translates :name
scope :alphabetical, lambda { with_translations(I18n.locale).order(Color::Translation.arel_table[:name]) }
scope :basic, where(:basic => true)
scope :standard, where(:standard => true)
scope :nonstandard, where(:standard => false)
def as_json(options={})
{:id => id, :name => human_name}
end
def human_name
name.split(' ').map { |word| word.capitalize }.join(' ')
end
end