class Product < ActiveRecord::Base
enum_machine :color, %w[red green]
end
Product::COLOR::RED.red? # => true
Product::COLOR::RED.green? # => false
Product::COLOR::RED.human_name # => "Красный"class Product < ActiveRecord::Base
enum_machine :color, %w[red green]
end
Product::COLOR::RED.red? # => true
Product::COLOR::RED.green? # => false
Product::COLOR::RED.human_name # => "Красный"