- Bundler installs gems locally inside our app
git init
- git add . and git commit so we add the untracked files
- Clean up the comments in the Gemfile
- We add RSpec to Gemfile:
group :development, :test do gem 'rspec-rails', '~> 2.0' end group :test do gem 'capybara', '~> 2.1.0' end
3. Run bundle
4. git status
bin/rails generate rspec:install
5. Back to Sublime: spec > spec_helper add:
require 'capybara/rspec'
Isabel likes this.