A Ruby on Rails app to share wedding information for our friends Kristen and Todd! We wrote a Rails app instead of, say, a simple HTML page because we wanted to display cool data from their Wanderable honeymoon registry. Wanderable at the time did not have an API, so this Rails app uses Mechanize to scrape data directly off the Wanderable registry web page.
You need to know Kristen and Todd's Wanderable.com registry URL, not included in this repository for privacy purposes.
bundle
bundle exec rake db:migrate
cp dotenv.sample .env
(Windows users must use command 'copy dotenv.sample .env')- Edit
.env
and update the Wanderable registry URL. Also fill out the Gmail user name and password (any Google account will do, even LexLadiesCode's) so the mailers can send RSVP emails. rails s
bundle
RAILS_ENV=test bundle exec rake db:migrate
RAILS_ENV=test bundle exec rspec