Install dependencies
- While in same directory as the Gemfile...
- Install bundler via CL: gem install bundler
- Install dependencies with bundler via CL: bundle install
Execute Tests
- All Tests: rspec spec/swapi_test_spec.rb
- One Test: rspec spec/swapi_test_spec.rb:37 [replace 37 with appropriate line number]
- All Tests: rake