[rubygems/rubygems] Incorporate naming/grammar suggestions from olleolleolle

https://github.com/rubygems/rubygems/commit/80571452ca
This commit is contained in:
Frank Lam 2020-05-28 17:48:15 +08:00 коммит произвёл Hiroshi SHIBATA
Родитель e6479ac3f6
Коммит 52a900773e
3 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -575,7 +575,7 @@ module Bundler
method_option :rubocop, :type => :boolean, :desc => "Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set gem.rubocop true`."
method_option :test, :type => :string, :lazy_default => Bundler.settings["gem.test"] || "", :aliases => "-t", :banner => "Use the specified test framework for your library",
:desc => "Generate a test directory for your library, either rspec, minitest or test-unit. Set a default with `bundle config set gem.test rspec`."
method_option :ci, :type => :string, :desc => "Generate CI configuration, either Github Actions, Travis CI, Gitlab CI or Circle CI. Set a default with `bundle config set gem.ci (github|travis|gitlab|circle)`"
method_option :ci, :type => :string, :desc => "Generate CI configuration, either GitHub Actions, Travis CI, GitLab CI or CircleCI. Set a default with `bundle config set gem.ci (github|travis|gitlab|circle)`"
def gem(name)
end

Просмотреть файл

@ -263,10 +263,10 @@ module Bundler
if ci_template.nil?
Bundler.ui.confirm "Do you want to set up automated testing for your gem? " \
"Continuous integration services make it easy to see if pull requests have passing tests " \
"before you merge them. Bundler supports these services:"\
"* Circle CI: https://circleci.com/\n" \
"* Github Actions: https://github.com/features/actions\n" \
"* Gitlab CI: https://docs.gitlab.com/ee/ci/\n" \
"before you merge them. Bundler supports these services:" \
"* CircleCI: https://circleci.com/\n" \
"* GitHub Actions: https://github.com/features/actions\n" \
"* GitLab CI: https://docs.gitlab.com/ee/ci/\n" \
"* Travis CI: https://travis-ci.org/\n" \
"\n"

Просмотреть файл

@ -663,7 +663,7 @@ RSpec.describe "bundle gem" do
end
context "--ci set to github" do
it "generates a Github Actions config file" do
it "generates a GitHub Actions config file" do
bundle "gem #{gem_name} --ci=github"
expect(bundled_app("#{gem_name}/.github/workflows/main.yml")).to exist
@ -671,7 +671,7 @@ RSpec.describe "bundle gem" do
end
context "--ci set to gitlab" do
it "generates a Gitlab Ci config file" do
it "generates a GitLab CI config file" do
bundle "gem #{gem_name} --ci=gitlab"
expect(bundled_app("#{gem_name}/.gitlab-ci.yml")).to exist
@ -679,7 +679,7 @@ RSpec.describe "bundle gem" do
end
context "--ci set to circle" do
it "generates a Circle Ci config file" do
it "generates a CircleCI config file" do
bundle "gem #{gem_name} --ci=circle"
expect(bundled_app("#{gem_name}/.circleci/config.yml")).to exist
@ -687,7 +687,7 @@ RSpec.describe "bundle gem" do
end
context "--ci set to travis" do
it "generates a Travis Ci config file" do
it "generates a Travis CI config file" do
bundle "gem #{gem_name} --ci=travis"
expect(bundled_app("#{gem_name}/.travis.yml")).to exist
@ -695,7 +695,7 @@ RSpec.describe "bundle gem" do
end
context "gem.ci setting set to none" do
it "doesnt generate any CI config" do
it "doesn't generate any CI config" do
expect(bundled_app("#{gem_name}/.github/workflows/main.yml")).to_not exist
expect(bundled_app("#{gem_name}/.travis.yml")).to_not exist
expect(bundled_app("#{gem_name}/.gitlab-ci.yml")).to_not exist
@ -704,7 +704,7 @@ RSpec.describe "bundle gem" do
end
context "gem.ci setting set to github" do
it "generates a Github Actions config file" do
it "generates a GitHub Actions config file" do
bundle "config set gem.ci github"
bundle "gem #{gem_name}"
@ -713,7 +713,7 @@ RSpec.describe "bundle gem" do
end
context "gem.ci setting set to travis" do
it "generates a Travis config file" do
it "generates a Travis CI config file" do
bundle "config set gem.ci travis"
bundle "gem #{gem_name}"
@ -722,7 +722,7 @@ RSpec.describe "bundle gem" do
end
context "gem.ci setting set to gitlab" do
it "generates a Gitlab config file" do
it "generates a GitLab CI config file" do
bundle "config set gem.ci gitlab"
bundle "gem #{gem_name}"
@ -730,7 +730,7 @@ RSpec.describe "bundle gem" do
end
end
context "gem.ci setting set to circleci" do
context "gem.ci setting set to circle" do
it "generates a CircleCI config file" do
bundle "config set gem.ci circle"
bundle "gem #{gem_name}"