Class: Negative::Negative
- Inherits:
-
Item::Item
- Object
- Item::Item
- Negative::Negative
- Defined in:
- lib/negative.rb
Constant Summary collapse
- @@list =
['disagree', "don't agree", 'do not agree', 'do not agree with the statement that']
Instance Method Summary collapse
- #disagree(argument) ⇒ Object
- #however(argument) ⇒ Object
-
#initialize(*args) ⇒ Negative
constructor
A new instance of Negative.
Methods inherited from Item::Item
#because, #evidence, #inspect, #personally, #starting_to_s, #to_s
Constructor Details
#initialize(*args) ⇒ Negative
Returns a new instance of Negative.
22 23 24 25 |
# File 'lib/negative.rb', line 22 def initialize(*args) b = %i[however personally disagree because evidence] super(b, args) end |