Module: Predicable

Instance Method Summary collapse

Instance Method Details

#attr_predicate(*attrs) ⇒ Object



5
6
7
8
9
10
11
# File 'extend/predicable.rb', line 5

def attr_predicate(*attrs)
  attrs.each do |attr|
    define_method attr do
      instance_variable_get("@#{attr.to_s.sub(/\?$/, "")}") == true
    end
  end
end