This is an blogging app I built at Epicodus using Ruby on Rails, Bootstrap, and a Twilio API. I used the gem devise to handle user authentication. View Site Here
rails
pg
sass-rails
uglifier
coffee-rails
jquery-rails
turbolinks
pry
bootstrap-sass
shoulda-matchers
rspec-rails
capybara
$ gem install bundler
$ bundle
$ postgres
$ rake db:create
$ rake db:migrate
$ rake db:test:prepare
$ rails server
Type the url localhost:3000 into your web browser.
When running rspec, the test database is not clearing out so rake db:test:prepare has to be run each time.
Alex Kaufman