-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
66 lines (49 loc) · 1.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'pg', '~> 0.20.0'
gem 'rails', '~> 5.1.4'
gem 'sinatra'
gem 'active_model_serializers', '~> 0.8.3'
gem 'jsonapi-resources'
gem 'whenever', require: false
gem 'bcrypt', '~> 3.1.7'
gem 'has_secure_token'
gem 'puma', '~> 3.7'
gem 'bugsnag'
gem 'snitcher'
gem 'redis-rails'
# logging
gem 'lograge'
gem 'lograge-sql'
gem 'ougai'
gem 'awesome_print'
# logging
group :development, :test do
gem 'byebug'
gem 'factory_bot_rails'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'annotate'
gem 'dotenv-rails'
group :development do
gem 'web-console', '>= 3.3.0'
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-sidekiq'
gem 'capistrano3-puma'
end
gem 'faraday-http-cache'
gem 'faraday_middleware'
gem 'typhoeus'
gem 'octokit', '~> 4.0'
gem 'pg_search'
gem 'scenic'
gem 'sidekiq'
gem 'skylight'
gem 'mocha'
gem 'rubocop', require: false
gem 'codecov', require: false, group: :test
gem 'simplecov', require: false, group: :test