Class: Slackdo::Reminder
- Inherits:
-
Object
- Object
- Slackdo::Reminder
- Defined in:
- lib/slackdo.rb
Instance Method Summary collapse
Instance Method Details
#add_reminder ⇒ Object
41 42 43 44 45 46 47 |
# File 'lib/slackdo.rb', line 41 def add_reminder notifier = Slack::Notifier.new `cat ~/.slackdo/webhook`.strip cli = HighLine.new = cli.ask 'Type your reminder:' notifier.post text: "• _#{message}_" puts 'Reminder was posted to Slack...' end |