Skip to content
This repository has been archived by the owner on Mar 14, 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 2, 2020
1 parent fb8c56e commit 10c347e
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,6 @@ gem 'net-ldap', '~> 0.16.2'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'okcomputer'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'

# Use Capistrano for deployment
gem 'capistrano', '~> 3.12.0'
gem 'capistrano-bundler', '1.6.0'
gem 'capistrano-rails', '~> 1.4.0'
gem 'capistrano-rbenv', '~> 2.1.4'

# Simple Form, Bootstrap and friends
gem 'bootstrap', '~> 4.3.1'
gem 'bootstrap-datepicker-rails'
Expand All @@ -53,6 +41,14 @@ gem 'pagy', '~> 3.5'
gem 'whenever', require: false
gem 'listen', '>= 3.0.5', '< 3.3'

# Use Capistrano for deployment
group :deploy do
gem 'capistrano', '~> 3.12.0'
gem 'capistrano-bundler', '1.6.0'
gem 'capistrano-rails', '~> 1.4.0'
gem 'capistrano-rbenv', '~> 2.1.4'
end

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "simplecov", require: false
Expand Down

0 comments on commit 10c347e

Please sign in to comment.