[rubygems/rubygems] typos in UI messages: fix a couple missing spaces between sentence breaks

https://github.com/rubygems/rubygems/commit/5cdda53382
This commit is contained in:
Tim Sutton 2021-07-31 22:25:20 -04:00 коммит произвёл Hiroshi SHIBATA
Родитель 97de4c02ad
Коммит d7c734a27e
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -457,7 +457,7 @@ repo_name ||= user_name
def implicit_global_source_warning
Bundler::SharedHelpers.major_deprecation 2, "This Gemfile does not include an explicit global source. " \
"Not using an explicit global source may result in a different lockfile being generated depending on " \
"the gems you have installed locally before bundler is run." \
"the gems you have installed locally before bundler is run. " \
"Instead, define a global source in your Gemfile like this: source \"https://rubygems.org\"."
end

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

@ -122,7 +122,7 @@ module Bundler
class VirtualProtocolError < BundlerError
def message
"There was an error relating to virtualization and file access." \
"There was an error relating to virtualization and file access. " \
"It is likely that you need to grant access to or mount some file system correctly."
end

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

@ -250,7 +250,7 @@ RSpec.describe Bundler::Dsl do
warning = "This Gemfile does not include an explicit global source. " \
"Not using an explicit global source may result in a different lockfile being generated depending on " \
"the gems you have installed locally before bundler is run." \
"the gems you have installed locally before bundler is run. " \
"Instead, define a global source in your Gemfile like this: source \"https://rubygems.org\"."
expect(Bundler::SharedHelpers).to receive(:major_deprecation).with(2, warning)

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

@ -336,7 +336,7 @@ RSpec.describe "bundle install with gem sources" do
expect(err).to include("This Gemfile does not include an explicit global source. " \
"Not using an explicit global source may result in a different lockfile being generated depending on " \
"the gems you have installed locally before bundler is run." \
"the gems you have installed locally before bundler is run. " \
"Instead, define a global source in your Gemfile like this: source \"https://rubygems.org\".")
end