module Quotemeal

Constants

VERSION

Public Class Methods

do_it() click to toggle source
# File lib/quotemeal.rb, line 4
def self.do_it
  resp = `curl -X POST --include 'https://andruxnet-random-famous-quotes.p.mashape.com/?cat=movies' -H 'X-Mashape-Key: Kh4Y3SbIMKmshCcDTCL5D57PnKmgp1BSXoQjsn4AvQcUdU107H' -H 'Content-Type: application/x-www-form-urlencoded' -H 'Accept: application/json' -s`
  quote = resp.split('"')[3]
  movie = resp.split('"')[7]
  p "#{quote} — #{movie}"
end