-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
69 lines (57 loc) · 1.2 KB
/
Gemfile
File metadata and controls
69 lines (57 loc) · 1.2 KB
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
67
68
69
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.7'
gem 'rails', '~> 5.2'
gem 'tyr', path: 'tyr'
gem 'activerecord-postgis-adapter'
gem 'faraday'
gem 'pg'
gem 'webpacker', '~> 4.x'
# assets
gem 'coffee-rails'
gem 'sassc-rails'
gem 'uglifier'
# JS plugin
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :staging, :production do
# gem 'newrelic_rpm'
end
group :development do
# capistrano
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-git-with-submodules'
gem 'capistrano-nvm', require: false
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-sidekiq'
gem 'capistrano-yarn'
gem 'capistrano3-unicorn'
# slack
gem 'slackistrano', require: false
gem 'annotate'
gem 'brakeman'
gem 'http_logger'
gem 'listen'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rails_real_favicon'
end
group :development, :test do
gem 'byebug'
gem 'factory_bot_rails'
gem 'rspec'
gem 'rspec-rails'
end
group :test do
gem 'database_cleaner'
gem 'timecop'
gem 'turnip'
gem 'webmock'
end
# unicorn
gem 'unicorn'
gem 'bootsnap', '>= 1.1.0', require: false