summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2018-11-01 22:05:16 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2018-11-01 22:05:17 +0900
commit35c189b81ed8fc684f1394008564f4b6871f2c18 (patch)
tree538a28fed367e02cdade4b08336844d7c20bae82
parent09bfdfa31ad5ae34d29745344493f6a63d355804 (diff)
downloadbundler-35c189b81ed8fc684f1394008564f4b6871f2c18.tar.gz
Fixed typo
-rw-r--r--spec/runtime/setup_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb
index abe9979109..7ea7d5ea0b 100644
--- a/spec/runtime/setup_spec.rb
+++ b/spec/runtime/setup_spec.rb
@@ -873,7 +873,7 @@ end
FileUtils.ln_s(bundler_dir, File.join(gems_dir, "bundler-#{Bundler::VERSION}"))
gemspec_file = ruby_core? ? "#{bundler_dir}/lib/bundler.gemspec" : "#{bundler_dir}/bundler.gemspec"
- gemspec = File.read(gemmspec_file).
+ gemspec = File.read(gemspec_file).
sub("Bundler::VERSION", %("#{Bundler::VERSION}"))
gemspec = gemspec.lines.reject {|line| line =~ %r{lib/bundler/version} }.join