Class: Gobstones::Lang::Commands::Boom
- Inherits:
-
Object
- Object
- Gobstones::Lang::Commands::Boom
- Includes:
- EqualityDefinition
- Defined in:
- lib/gobstones/lang/commands/boom.rb
Instance Attribute Summary collapse
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
- #equality_attributes ⇒ Object
- #evaluate(_context) ⇒ Object
-
#initialize(message) ⇒ Boom
constructor
A new instance of Boom.
Methods included from EqualityDefinition
Constructor Details
#initialize(message) ⇒ Boom
Returns a new instance of Boom.
12 13 14 |
# File 'lib/gobstones/lang/commands/boom.rb', line 12 def initialize() = end |
Instance Attribute Details
#message ⇒ Object (readonly)
Returns the value of attribute message.
10 11 12 |
# File 'lib/gobstones/lang/commands/boom.rb', line 10 def end |
Instance Method Details
#equality_attributes ⇒ Object
16 17 18 |
# File 'lib/gobstones/lang/commands/boom.rb', line 16 def equality_attributes i[] end |
#evaluate(_context) ⇒ Object
20 21 22 |
# File 'lib/gobstones/lang/commands/boom.rb', line 20 def evaluate(_context) raise Runner::BoomError, end |