提交 7432d32f 编写于 作者: G Godfrey Chan

Use the same enum definition in the docs and in the comments [ci skip]

上级 cbd4bc84
......@@ -55,12 +55,12 @@ module Enum
def enum(definitions)
klass = self
definitions.each do |name, values|
# DIRECTION = { }
# STATUS = { }
enum_values = _enum_methods_module.const_set name.to_s.upcase, ActiveSupport::HashWithIndifferentAccess.new
name = name.to_sym
_enum_methods_module.module_eval do
# def direction=(value) self[:direction] = DIRECTION[value] end
# def status=(value) self[:status] = STATUS[value] end
define_method("#{name}=") { |value|
unless enum_values.has_key?(value)
raise ArgumentError, "'#{value}' is not a valid #{name}"
......@@ -68,20 +68,20 @@ def enum(definitions)
self[name] = enum_values[value]
}
# def direction() DIRECTION.key self[:direction] end
# def status() STATUS.key self[:status] end
define_method(name) { enum_values.key self[name] }
pairs = values.respond_to?(:each_pair) ? values.each_pair : values.each_with_index
pairs.each do |value, i|
enum_values[value] = i
# scope :incoming, -> { where direction: 0 }
# scope :active, -> { where status: 0 }
klass.scope value, -> { klass.where name => i }
# def incoming?() direction == 0 end
# def active?() status == 0 end
define_method("#{value}?") { self[name] == i }
# def incoming! update! direction: :incoming end
# def active! update! status: :active end
define_method("#{value}!") { update! name => value }
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册