Class: Schatter::Command::CreateMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/schatter/command/create_message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#conversationObject (readonly)

Returns the value of attribute conversation.



2
3
4
# File 'lib/schatter/command/create_message.rb', line 2

def conversation
  @conversation
end

#helpObject (readonly)

Returns the value of attribute help.



2
3
4
# File 'lib/schatter/command/create_message.rb', line 2

def help
  @help
end

#usageObject (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.create_message content: content
end