Class: Schatter::Command::InvitePerson
- Inherits:
-
Object
- Object
- Schatter::Command::InvitePerson
- Defined in:
- lib/schatter/command/invite_person.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(email) ⇒ Object
-
#initialize(conversation) ⇒ InvitePerson
constructor
A new instance of InvitePerson.
Constructor Details
#initialize(conversation) ⇒ InvitePerson
Returns a new instance of InvitePerson.
4 5 6 7 8 |
# File 'lib/schatter/command/invite_person.rb', line 4 def initialize conversation @conversation = conversation @usage = '<email>' @help = 'Invites someone to join a conversation' end |
Instance Attribute Details
#conversation ⇒ Object (readonly)
Returns the value of attribute conversation.
2 3 4 |
# File 'lib/schatter/command/invite_person.rb', line 2 def conversation @conversation end |
#help ⇒ Object (readonly)
Returns the value of attribute help.
2 3 4 |
# File 'lib/schatter/command/invite_person.rb', line 2 def help @help end |
#usage ⇒ Object (readonly)
Returns the value of attribute usage.
2 3 4 |
# File 'lib/schatter/command/invite_person.rb', line 2 def usage @usage end |
Instance Method Details
#execute(email) ⇒ Object
10 11 12 |
# File 'lib/schatter/command/invite_person.rb', line 10 def execute email conversation.create_person email: email end |