-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
52 lines (43 loc) · 1.42 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# dotenv first to load environment variables everywhere
gem 'dotenv-rails', groups: %i[development test]
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.1.4'
gem 'active_model_serializers', '~> 0.10.7'
gem 'aws-sdk-s3', '~> 1'
gem 'cancancan', '~> 2.0'
gem 'devise_token_auth', '0.1.42'
gem 'faker', github: 'stympy/faker'
gem 'rack-cors'
gem 'redis-namespace'
gem 'sidekiq'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'rubocop', require: false
gem 'rubocop-rspec', require: false
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'apitome'
gem 'codeclimate-test-reporter', '~> 1.0', '>= 1.0.8'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.6'
gem 'rspec-sidekiq'
gem 'rspec_api_documentation'
gem 'simplecov'
gem 'simplecov-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]