Class: SlackMessaging::RandomMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/slack_messaging/random_message.rb

Class Method Summary collapse

Class Method Details

.acquire_random_quoteObject



5
6
7
8
9
10
# File 'lib/slack_messaging/random_message.rb', line 5

def self.acquire_random_quote
  random_quote = HTTParty.get('http://api.quotable.io/random', headers: { 'Content-Type': 'application/json' }).body
  quote_content = JSON.parse(random_quote)['content']
  quote_author = JSON.parse(random_quote)['author']
  "\"#{quote_content}\"\n—#{quote_author}"
end