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 +4 -4
- data/Changelog.md +11 -1
- data/lib/rspec/collection_matchers/have.rb +1 -1
- data/lib/rspec/collection_matchers/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1001db46ca4ade457806b7c3e04ef8ccfce4f5db
|
4
|
+
data.tar.gz: 7c90997aa840acc58c2f8c453b90fb0aaeb036d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16ede947015999fcccfbe4c1d6c91aaf1c3ea1685620faa8a0c5c9e8c9397852d9f68f1af072c1c62a10aae69f7445e7f04cad0547c5afb949cc128e652992d4
|
7
|
+
data.tar.gz: 48ac0c43d697f3d04eea34119a90a93bf280c180835534c28f4e1d5d5fbf8fe86ad75ddc69c980d8c717a40afb720af6595321d7509f5ba74068a09e423dbb6e
|
data/Changelog.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
### Development
|
2
2
|
|
3
|
-
|
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::
|
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
|
data/spec/spec_helper.rb
CHANGED
@@ -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::
|
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.
|
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.
|
108
|
+
summary: rspec-collection_matchers-1.1.1
|
109
109
|
test_files:
|
110
110
|
- features/have.feature
|
111
111
|
- features/support/env.rb
|