summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-08-18 08:51:39 +0000
committerBundlerbot <bot@bundler.io>2019-08-18 08:51:39 +0000
commit84b9238affcc6196aa0164fd48a8c77d537702d6 (patch)
tree3e130ba7d66ddf4d98a837fd64ef2a1e8066fc7e
parentdb600de804aa415a7d4df198b37b3b9479ebb94f (diff)
parent52b6b9406824a1bafc7eb1dd2726bbdd483d60c2 (diff)
downloadbundler-84b9238affcc6196aa0164fd48a8c77d537702d6.tar.gz
Merge #7313
7313: Fix a couple of typos r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was typos. ### What is your fix for the problem, implemented in this PR? My fix is to correct typos. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--spec/commands/clean_spec.rb2
-rw-r--r--spec/support/path.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/commands/clean_spec.rb b/spec/commands/clean_spec.rb
index d3161c3adb..3ef7e809e8 100644
--- a/spec/commands/clean_spec.rb
+++ b/spec/commands/clean_spec.rb
@@ -601,7 +601,7 @@ RSpec.describe "bundle clean" do
expect(out).to eq("1.0")
end
- it "doesn't blow up on path gems without a .gempsec" do
+ it "doesn't blow up on path gems without a .gemspec" do
relative_path = "vendor/private_gems/bar-1.0"
absolute_path = bundled_app(relative_path)
FileUtils.mkdir_p("#{absolute_path}/lib/bar")
diff --git a/spec/support/path.rb b/spec/support/path.rb
index 9493c5422a..14c1514291 100644
--- a/spec/support/path.rb
+++ b/spec/support/path.rb
@@ -150,7 +150,7 @@ module Spec
end
def ruby_core?
- # avoid to wornings
+ # avoid to warnings
@ruby_core ||= nil
if @ruby_core.nil?