mirror of
https://github.com/gosticks/brew.git
synced 2026-08-21 17:10:18 +00:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
module Predicable
|
|
def attr_predicate(*attrs)
|
|
attrs.each do |attr|
|
|
define_method attr do
|
|
instance_variable_get("@#{attr.to_s.sub(/\?$/, "")}") == true
|
|
end
|
|
end
|
|
end
|
|
end
|