Skip to content

Instantly share code, notes, and snippets.

@romchambe
Last active July 18, 2018 14:21
Show Gist options
  • Save romchambe/6be8064d0a5da9d6a828533daea9ca14 to your computer and use it in GitHub Desktop.
Save romchambe/6be8064d0a5da9d6a828533daea9ca14 to your computer and use it in GitHub Desktop.
API Gemfile
source 'https://rubygems.org'
gem 'rails', '~> 5.1.6' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'puma', '~> 3.7' # Use Puma as the app server
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'redis', '~> 4.0' # Use Redis adapter to run Action Cable in production
gem 'bcrypt', '~> 3.1.7' # Authentication
gem 'jwt' # encoding and decoding of HMACSHA256 tokens available in the Rails application
gem 'pg', '~> 0.20.0' # Database
gem 'rack-cors', require: 'rack/cors' # Allow Cross Origin Ressource Sharing
gem 'delayed_job_active_record' # Delayed jobs => schedule tasks
group :development, :test do
gem 'rspec-rails', '~> 3.5'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'pry-rails'
gem 'spring' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'factory_bot_rails', '~> 4.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment