Class: EightBall::Conditions::Always

Inherits:
Base
  • Object
show all
Defined in:
lib/eight_ball/conditions/always.rb

Overview

The Always Condition is always satisfied

Instance Attribute Summary

Attributes inherited from Base

#parameter

Instance Method Summary collapse

Methods inherited from Base

#==, #hash, #initialize

Constructor Details

This class inherits a constructor from EightBall::Conditions::Base

Instance Method Details

#satisfied?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/eight_ball/conditions/always.rb', line 6

def satisfied?
  true
end