3 Star 0 Fork 1

Gitee 极速下载 / Capistrano

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/capistrano/capistrano
克隆/下载
Gemfile 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
Matt Brictson 提交于 2024-01-23 09:02 . Fix RuboCop in CI (#2148)
source "https://rubygems.org"
# Specify your gem's dependencies in capistrano.gemspec
gemspec
gem "mocha"
gem "rspec"
gem "rspec-core", "~> 3.4.4"
group :cucumber do
# Latest versions of cucumber don't support Ruby < 2.1
# rubocop:disable Bundler/DuplicatedGem
if Gem::Requirement.new("< 2.1").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "cucumber", "< 3.0.1"
else
gem "cucumber"
end
# rubocop:enable Bundler/DuplicatedGem
end
# Latest versions of net-ssh don't support Ruby < 2.2.6
if Gem::Requirement.new("< 2.2.6").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "net-ssh", "< 5.0.0"
end
# Latest versions of public_suffix don't support Ruby < 2.1
if Gem::Requirement.new("< 2.1").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "public_suffix", "< 3.0.0"
end
# Latest versions of i18n don't support Ruby < 2.4
if Gem::Requirement.new("< 2.4").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "i18n", "< 1.3.0"
end
# Latest versions of rake don't support Ruby < 2.2
if Gem::Requirement.new("< 2.2").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "rake", "< 13.0.0"
end
# We only run danger and rubocop on a new-ish ruby; no need to install them otherwise
if Gem::Requirement.new("> 2.4").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "base64"
gem "danger"
gem "psych", "< 4" # Ensures rubocop works on Ruby 3.1
gem "racc"
gem "rubocop", "0.48.1"
end
Ruby
1
https://gitee.com/mirrors/Capistrano.git
git@gitee.com:mirrors/Capistrano.git
mirrors
Capistrano
Capistrano
master

搜索帮助