forked from Re-Volt-America/rva_pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
20 lines (16 loc) · 1.08 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.3'
gem 'json', '~> 2.6', '>= 2.6.1' # Ensure support for JSON
gem 'rake', '~> 13.0', '>= 13.0.6' # Rake tasks
gem 'rubyzip', '~> 2.3', '>= 2.3.2' # ZIP Support
group :development do
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0' # Resolve OpenSSH problems with capistrano
gem 'capistrano', '~> 3.16.0', :require => false # Deployment
gem 'capistrano-bundler', '~> 2.0', :require => false # Capistrano bundler integration
gem 'capistrano-git-with-submodules', '~> 2.0' # Capistrano support for submodules
gem 'ed25519', '>= 1.2', '< 2.0' # Resolve OpenSSH problems with capistrano
gem 'rubocop', :require => false # Ruby code style checker
gem 'rvm1-capistrano3', :require => false # Capistrano rvm integration
end