Class | God::Conditions::Always |
In: |
lib/god/conditions/always.rb
|
Parent: | PollCondition |
Always trigger or never trigger.
Examples
# Always trigger. on.condition(:always) do |c| c.what = true end # Never trigger. on.condition(:always) do |c| c.what = false end
what | [RW] | The Boolean determining whether this condition will always trigger (true) or never trigger (false). |