rspec-collection_matchers 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +8 -0
- data/lib/rspec/collection_matchers.rb +2 -1
- data/lib/rspec/collection_matchers/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cffeb37567801d1dd72d4ed804de75004fd55c3f
|
4
|
+
data.tar.gz: 92e24526866176b5a664d9c0f9f0cdd288671914
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8483fe9ef1382dd376c024f497b9ba3b521c874bf5394888ded1e5992507dce064dc8586b1434d51a1ef86a3e1017475b20561007cb972e8da3e206d274d1db5
|
7
|
+
data.tar.gz: ad0db80a2bc2e57416d9466175ee1a3c0bfa8fb442d28918422561357492f14c2b96e26974d684d078b74c3d3f9d1cfd320447ea00ae8cb9de3f11183f3ed8bb
|
data/Changelog.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
### Development
|
2
2
|
|
3
|
+
### 1.1.2 / 2014-11-11
|
4
|
+
|
5
|
+
[full changelog](http://github.com/rspec/rspec-collection_matchers/compare/v1.1.1...v1.1.2)
|
6
|
+
|
7
|
+
Bug Fixes:
|
8
|
+
|
9
|
+
* Fix bug of uninitialized constant RSpec::Expectations (Related to #20)
|
10
|
+
|
3
11
|
### 1.1.1 / 2014-11-10
|
4
12
|
|
5
13
|
[full changelog](http://github.com/rspec/rspec-collection_matchers/compare/v1.1.0...v1.1.1)
|
@@ -1,4 +1,5 @@
|
|
1
|
+
require 'rspec/expectations'
|
1
2
|
require 'rspec/collection_matchers/version'
|
2
3
|
require 'rspec/collection_matchers/matchers'
|
3
4
|
require 'rspec/collection_matchers/have'
|
4
|
-
require 'rspec/collection_matchers/rails_extensions'
|
5
|
+
require 'rspec/collection_matchers/rails_extensions'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hugo Baraúna
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-expectations
|
@@ -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.2
|
109
109
|
test_files:
|
110
110
|
- features/have.feature
|
111
111
|
- features/support/env.rb
|