Class: Schatter::Command::CreateMessage
- Inherits:
-
Object
- Object
- Schatter::Command::CreateMessage
- Defined in:
- lib/schatter/command/create_message.rb
Instance Attribute Summary collapse
-
#conversation ⇒ Object
readonly
Returns the value of attribute conversation.
-
#help ⇒ Object
readonly
Returns the value of attribute help.
-
#usage ⇒ Object
readonly
Returns the value of attribute usage.
Instance Method Summary collapse
- #execute(content) ⇒ Object
-
#initialize(conversation) ⇒ CreateMessage
constructor
A new instance of CreateMessage.
Constructor Details
#initialize(conversation) ⇒ CreateMessage
Returns a new instance of CreateMessage.
4 5 6 7 8 |
# File 'lib/schatter/command/create_message.rb', line 4 def initialize conversation @conversation = conversation @usage = 'content' @help = 'Creates a new message in the current conversation' end |
Instance Attribute Details
#conversation ⇒ Object (readonly)
Returns the value of attribute conversation.
2 3 4 |
# File 'lib/schatter/command/create_message.rb', line 2 def conversation @conversation end |
#help ⇒ Object (readonly)
Returns the value of attribute help.
2 3 4 |
# File 'lib/schatter/command/create_message.rb', line 2 def help @help end |
#usage ⇒ Object (readonly)
Returns the value of attribute usage.
2 3 4 |
# File 'lib/schatter/command/create_message.rb', line 2 def usage @usage end |
Instance Method Details
#execute(content) ⇒ Object
10 11 12 |
# File 'lib/schatter/command/create_message.rb', line 10 def execute content conversation. content: content end |