Module: Predicable

Instance Method Summary collapse

Instance Method Details

#attr_predicate(*attrs) ⇒ void

This method returns an undefined value.

Parameters:



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

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