diff options
author | Andre Arko <andre@arko.net> | 2014-02-06 12:29:04 +0200 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2014-02-06 12:29:04 +0200 |
commit | cf8abdfaa3d335222f947f451657bf289f697a41 (patch) | |
tree | 2224f06ac9d8d3b4d7207964dd00e51edd774e1f /spec/other | |
parent | ca395bd87d7569c81241adc6f37465988c3ce8eb (diff) | |
parent | 8af8e19d5c2c0aaeb9d8d278432c66c095ae529d (diff) | |
download | bundler-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.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/other/ext_spec.rb b/spec/other/ext_spec.rb index 14c432be40..cbee163771 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 |