saltedseacorn / ss_api_endpoint_takehome

Take-home challenge for SS. Create tables, model validations, and endpoints for an API only app. Authenticate w/ JWT
0 stars 1 forks source link

Install gems #23

Closed saltedseacorn closed 3 years ago

saltedseacorn commented 3 years ago

Installed gems:

gem 'bcrypt'
gem 'jwt'
gem 'travis'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  gem 'pry'
  gem 'simplecov'
  gem 'rspec-rails'
  gem 'shoulda-matchers'
end

Attempting to integrate travis into repo