rspec-collection_matchers 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: faaf9c8611959593b7239c07f886daa9574880ae
4
- data.tar.gz: f655c3df99261b8fe162c11c5915a9b5c2f9e29e
3
+ metadata.gz: 1001db46ca4ade457806b7c3e04ef8ccfce4f5db
4
+ data.tar.gz: 7c90997aa840acc58c2f8c453b90fb0aaeb036d2
5
5
  SHA512:
6
- metadata.gz: d169d56403d92a256ad2efe912c28714816ffb9dcac8b77fbb34b20bc6126b159bd5b4456980c8a2234193ecb7aceaf234102115bf634c57910d1cddfa44c94d
7
- data.tar.gz: e1bb78d0844f4c94c266649e08e42b39edb9ac6bf362b0e634884606fb33f7d941547973715b05cb8f6d7a9a3c622c15a4d1db429e4541e3c051fdc763b45572
6
+ metadata.gz: 16ede947015999fcccfbe4c1d6c91aaf1c3ea1685620faa8a0c5c9e8c9397852d9f68f1af072c1c62a10aae69f7445e7f04cad0547c5afb949cc128e652992d4
7
+ data.tar.gz: 48ac0c43d697f3d04eea34119a90a93bf280c180835534c28f4e1d5d5fbf8fe86ad75ddc69c980d8c717a40afb720af6595321d7509f5ba74068a09e423dbb6e
@@ -1,6 +1,16 @@
1
1
  ### Development
2
2
 
3
- [full changelog](http://github.com/rspec/rspec-collection_matchers/compare/v1.0.0...master)
3
+ ### 1.1.1 / 2014-11-10
4
+
5
+ [full changelog](http://github.com/rspec/rspec-collection_matchers/compare/v1.1.0...v1.1.1)
6
+
7
+ Bug Fixes:
8
+
9
+ * Remove virtual dependency on rspec-core (Thanks @jscheid for reporting that, #20)
10
+
11
+ ### 1.1.0 / 2014-11-10
12
+
13
+ [full changelog](http://github.com/rspec/rspec-collection_matchers/compare/v1.0.0...v1.1.0)
4
14
 
5
15
  Enhancements:
6
16
 
@@ -1,7 +1,7 @@
1
1
  module RSpec
2
2
  module CollectionMatchers
3
3
  class Have
4
- include RSpec::Matchers::Composable unless RSpec::Core::Version::STRING.to_f < 3.0
4
+ include RSpec::Matchers::Composable unless RSpec::Expectations::Version::STRING.to_f < 3.0
5
5
 
6
6
  QUERY_METHODS = [:size, :length, :count].freeze
7
7
  IGNORED_CLASSES = [Integer].freeze
@@ -1,5 +1,5 @@
1
1
  module RSpec
2
2
  module CollectionMatchers
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
@@ -9,7 +9,7 @@ require 'rspec/collection_matchers'
9
9
  Dir['./spec/support/**/*'].each {|f| require f}
10
10
 
11
11
  RSpec.configure do |config|
12
- config.treat_symbols_as_metadata_keys_with_true_values = true if RSpec::Core::Version::STRING < "3.0"
12
+ config.treat_symbols_as_metadata_keys_with_true_values = true if RSpec::Expectations::Version::STRING < "3.0"
13
13
  config.run_all_when_everything_filtered = true
14
14
  config.filter_run :focus
15
15
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-collection_matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hugo Baraúna
@@ -105,7 +105,7 @@ rubyforge_project:
105
105
  rubygems_version: 2.2.2
106
106
  signing_key:
107
107
  specification_version: 4
108
- summary: rspec-collection_matchers-1.1.0
108
+ summary: rspec-collection_matchers-1.1.1
109
109
  test_files:
110
110
  - features/have.feature
111
111
  - features/support/env.rb