Skip to content
This repository has been archived by the owner on Mar 24, 2020. It is now read-only.

Commit

Permalink
Group capistrano gems for deployment
Browse files Browse the repository at this point in the history
This allows the application to leverage the BUNDLE_WITHOUT and
BUNDLE_WITH environment variables for usage in GitLab's CI/CD system.
  • Loading branch information
mcritchlow authored and VivianChu committed Mar 3, 2020
1 parent f6fde2a commit 3fc95d6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ gem 'qa', '~> 1.1.0'
gem 'sprockets', '~> 2.12.4' # locked
gem 'rack-dev-mark', '~> 0.7.5'

# Deploy with Capistrano
gem 'capistrano', '~> 3.8.1'
gem 'capistrano-rails', '~> 1.2.3'
gem 'capistrano-rbenv', '~> 2.1.1'
gem 'capistrano-bundler', '~> 1.2.0'

gem "i18n", '~> 0.8.1'
gem "bootstrap-sass", '~> 2.3.2.2' # locked because blacklight 4.7
gem "bower-rails", "~> 0.11.0"
Expand All @@ -51,6 +45,14 @@ gem 'coveralls', '0.8.21', require: false
gem 'rubyzip', '1.3.0'
gem 'whenever', require: false

# Deploy with Capistrano
group :deploy do
gem 'capistrano', '~> 3.8.1'
gem 'capistrano-rails', '~> 1.2.3'
gem 'capistrano-rbenv', '~> 2.1.1'
gem 'capistrano-bundler', '~> 1.2.0'
end

group :development, :test do
gem 'byebug'
gem 'sass-rails', '~> 5.0.5' # locked
Expand Down

0 comments on commit 3fc95d6

Please sign in to comment.