-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
33 lines (28 loc) · 809 Bytes
/
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
source 'https://rubygems.org'
gem 'aws-sdk-ec2', '~> 1'
gem 'config'
gem 'highline', '~> 1.7'
# lib/capistrano/tasks/console.rake uses pry
gem 'pry'
gem 'pry-doc'
group :development, :test do
gem 'reek'
gem 'rubocop', require: false
gem 'rubocop-rspec', require: false
gem 'yard'
end
group :test do
gem 'rspec'
gem 'simplecov', require: false
gem 'single_cov'
end
# Do not place the capistrano-related gems in the default or Rails.env bundle group
# Otherwise the config/application.rb's Bundle.require command will try to load them
# leading to failure because these gem's rake task files use capistrano DSL.
group :deployment do
# Use Capistrano for deployment
gem 'capistrano', '> 3.1'
gem 'capistrano-bundle_audit'
gem 'capistrano-bundler', '> 1.1'
gem 'capistrano-shell'
end