Skip to content

Constants now return as value object

Latest

Choose a tag to compare

@ermolaev ermolaev released this 10 Jan 13:25
· 1 commit to master since this release
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 # => "Красный"