summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2016-11-24 06:41:27 +1100
committerColby Swandale <colby@taplaboratories.com>2016-11-24 06:41:27 +1100
commit65138c076076114d7b10737d03c21a82310e8df7 (patch)
tree336045e605dcc4984991c8e9d0adb6fcfe3d6acb
parent6a38b0daf34fdeec5e9f7a40303b61794625c315 (diff)
downloadbundler-65138c076076114d7b10737d03c21a82310e8df7.tar.gz
fix spec and use more common gem in inline example
-rw-r--r--spec/runtime/inline_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/runtime/inline_spec.rb b/spec/runtime/inline_spec.rb
index 8cd918f770..2cae509086 100644
--- a/spec/runtime/inline_spec.rb
+++ b/spec/runtime/inline_spec.rb
@@ -219,11 +219,12 @@ describe "bundler/inline#gemfile" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
- gem "whirly"
+ gem "json", "~> 2.0.2"
end
+ puts JSON::VERSION
RUBY
expect(err).to be_empty
- expet(existstatus).to be_zero if existstatus
+ expet(exitstatus).to be_zero if exitstatus
end
end