Skip to content

Instantly share code, notes, and snippets.

View j-wilkins's full-sized avatar

Jake Wilkins j-wilkins

View GitHub Profile
@j-wilkins
j-wilkins / papajohns.rb
Last active January 28, 2017 05:45
Order a Favorite Pizza from Papa Johns
require 'mechanize'
class PapaOrder
SN_URL = 'https://order.papajohns.com/secure/signin/frame.html?destination='
attr_reader :agent, :password, :email
def initialize(email, password)
@email, @password = email, password
@agent = Mechanize.new