aboutsummaryrefslogtreecommitdiffstats
path: root/spec/other
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-02-06 12:29:04 +0200
committerAndre Arko <andre@arko.net>2014-02-06 12:29:04 +0200
commitcf8abdfaa3d335222f947f451657bf289f697a41 (patch)
tree2224f06ac9d8d3b4d7207964dd00e51edd774e1f /spec/other
parentca395bd87d7569c81241adc6f37465988c3ce8eb (diff)
parent8af8e19d5c2c0aaeb9d8d278432c66c095ae529d (diff)
downloadbundler-cf8abdfaa3d335222f947f451657bf289f697a41.tar.gz
Merge v1.5.3 from branch '1-5-stable'
Conflicts: CHANGELOG.md Rakefile lib/bundler/cli.rb lib/bundler/fetcher.rb lib/bundler/installer.rb lib/bundler/rubygems_ext.rb lib/bundler/source/rubygems.rb lib/bundler/templates/newgem/spec/newgem_spec.rb.tt lib/bundler/version.rb spec/bundler/definition_spec.rb spec/bundler/dsl_spec.rb spec/bundler/gem_helper_spec.rb spec/bundler/safe_catch_spec.rb spec/commands/newgem_spec.rb spec/install/gems/simple_case_spec.rb spec/other/ext_spec.rb
Diffstat (limited to 'spec/other')
-rw-r--r--spec/other/ext_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/other/ext_spec.rb b/spec/other/ext_spec.rb
index 14c432be..cbee1637 100644
--- a/spec/other/ext_spec.rb
+++ b/spec/other/ext_spec.rb
@@ -3,7 +3,7 @@ require 'spec_helper'
describe "Gem::Specification#match_platform" do
it "does not match platforms other than the gem platform" do
darwin = gem "lol", "1.0", "platform_specific-1.0-x86-darwin-10"
- expect(darwin.match_platform(pl('java'))).to be false
+ expect(darwin.match_platform(pl('java'))).to eq(false)
end
end