response_mate 0.4.0 → 0.4.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 +9 -3
- data/lib/response_mate/manifest.rb +2 -0
- data/lib/response_mate/version.rb +1 -1
- data/spec/lib/response_mate/manifest_spec.rb +2 -2
- 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: 4a2f99c44c8041ce2e6691546acac982ccdb1f40
|
4
|
+
data.tar.gz: d135f18f64222689fd3463b09ca78181a8214dca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7db3ec18aa45c1ac06559378a5cd559ba92a6141ade468c00e6dbc811b6c8af1dd11e3ec835e6279b68119e1b36cd708b13706fade2b7ccc74eef40d5e3272d7
|
7
|
+
data.tar.gz: 4ebe268bb89d0a2222e27bf4e06dc7e0f2db12fcbbf51d44e7bdd560ee645f1df932ffa3af27471865af7cc8578c89161be568443c7605e8ee3f65625bab926d
|
data/CHANGELOG.md
CHANGED
@@ -4,9 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
5
5
|
## Unreleased
|
6
6
|
|
7
|
+
## [0.4.1] - 2015-01-25
|
8
|
+
|
9
|
+
### Fixed
|
10
|
+
|
11
|
+
* Issue when filtering by key, in a requests manifest with a single key (@eavgerinos)
|
12
|
+
|
7
13
|
## [0.4.0] - 2015-08-19
|
8
14
|
|
9
|
-
|
15
|
+
### Added
|
10
16
|
|
11
17
|
* `record`, `inspect`, `list` commands accept `-e` option to specify the
|
12
18
|
environment file
|
@@ -16,7 +22,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
16
22
|
* List command now accepts `-o` option to specify the output directory
|
17
23
|
of recordings
|
18
24
|
|
19
|
-
|
25
|
+
### Changed
|
20
26
|
|
21
27
|
* The verb key in the recorded response is now lower cased Symbol (was
|
22
28
|
upper case String)
|
@@ -29,7 +35,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
29
35
|
* The default output directory for the recordings is the current working
|
30
36
|
directory (used to be `./output/responses/`)
|
31
37
|
|
32
|
-
|
38
|
+
### Fixed
|
33
39
|
|
34
40
|
* Exception handling for ManifestMissing, OutputDirError, KeysNotFound
|
35
41
|
in bin/response_mate
|
@@ -160,8 +160,8 @@ describe ResponseMate::Manifest do
|
|
160
160
|
end
|
161
161
|
|
162
162
|
context 'when no key is missing' do
|
163
|
-
let(:keys) { %w[key1
|
164
|
-
let(:existing_requests) {
|
163
|
+
let(:keys) { %w[key1] }
|
164
|
+
let(:existing_requests) { keys.map { |key| double(key: key) } }
|
165
165
|
|
166
166
|
before do
|
167
167
|
allow(manifest).to receive(:requests).and_return(existing_requests)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: response_mate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitris Zorbas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|