vcr 1.6.0 → 1.7.0
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.
- data/.gemtest +0 -0
- data/.gitignore +5 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +29 -2
- data/Gemfile +3 -3
- data/README.md +55 -11
- data/Rakefile +45 -4
- data/features/.nav +6 -0
- data/features/{README.md → about_the_cucumber_features.md} +1 -1
- data/features/cassettes/update_content_length_header.feature +106 -0
- data/features/configuration/default_cassette_options.feature +20 -2
- data/features/configuration/filter_sensitive_data.feature +154 -0
- data/features/getting_started.md +67 -0
- data/features/record_modes/all.feature +4 -2
- data/features/record_modes/new_episodes.feature +8 -2
- data/features/record_modes/none.feature +4 -2
- data/features/record_modes/once.feature +92 -0
- data/features/step_definitions/cli_steps.rb +18 -0
- data/lib/vcr.rb +13 -6
- data/lib/vcr/cassette.rb +36 -15
- data/lib/vcr/config.rb +14 -2
- data/lib/vcr/deprecations/cassette.rb +29 -0
- data/lib/vcr/deprecations/config.rb +18 -0
- data/lib/vcr/deprecations/http_stubbing_adapters/common.rb +9 -0
- data/lib/vcr/deprecations/http_stubbing_adapters/fakeweb.rb +11 -0
- data/lib/vcr/http_stubbing_adapters/common.rb +1 -1
- data/lib/vcr/http_stubbing_adapters/fakeweb.rb +2 -7
- data/lib/vcr/http_stubbing_adapters/multi_object_proxy.rb +1 -1
- data/lib/vcr/middleware/common.rb +3 -5
- data/lib/vcr/rspec.rb +1 -38
- data/lib/vcr/structs/http_interaction.rb +29 -0
- data/lib/vcr/structs/request.rb +6 -0
- data/lib/vcr/structs/response.rb +4 -0
- data/lib/vcr/{cucumber_tags.rb → test_frameworks/cucumber.rb} +10 -2
- data/lib/vcr/test_frameworks/rspec.rb +37 -0
- data/lib/vcr/util/basic_object.rb +32 -28
- data/lib/vcr/{hooks.rb → util/hooks.rb} +3 -6
- data/lib/vcr/util/internet_connection.rb +1 -1
- data/lib/vcr/util/ping.rb +21 -17
- data/lib/vcr/util/variable_args_block_caller.rb +12 -0
- data/lib/vcr/util/yaml.rb +11 -0
- data/lib/vcr/version.rb +1 -1
- data/script/FullBuildRakeFile +7 -0
- data/spec/monkey_patches.rb +0 -7
- data/spec/spec_helper.rb +40 -8
- data/spec/support/http_library_adapters.rb +0 -262
- data/spec/support/shared_example_groups/http_library.rb +256 -0
- data/spec/support/{http_stubbing_adapter.rb → shared_example_groups/http_stubbing_adapter.rb} +15 -3
- data/spec/support/shared_example_groups/ignore_localhost_deprecation.rb +28 -0
- data/spec/support/{normalizers.rb → shared_example_groups/normalizers.rb} +3 -3
- data/spec/support/{version_checker.rb → shared_example_groups/version_checking.rb} +1 -1
- data/spec/vcr/cassette_spec.rb +80 -28
- data/spec/vcr/config_spec.rb +55 -8
- data/spec/vcr/deprecations/cassette_spec.rb +57 -0
- data/spec/vcr/deprecations/config_spec.rb +30 -0
- data/spec/vcr/deprecations/http_stubbing_adapters/common_spec.rb +7 -0
- data/spec/vcr/deprecations/http_stubbing_adapters/fakeweb_spec.rb +16 -0
- data/spec/vcr/extensions/net_http_response_spec.rb +1 -3
- data/spec/vcr/extensions/net_http_spec.rb +1 -3
- data/spec/vcr/http_stubbing_adapters/fakeweb_spec.rb +1 -4
- data/spec/vcr/http_stubbing_adapters/faraday_spec.rb +1 -4
- data/spec/vcr/http_stubbing_adapters/typhoeus_spec.rb +1 -4
- data/spec/vcr/http_stubbing_adapters/webmock_spec.rb +1 -3
- data/spec/vcr/middleware/faraday_spec.rb +4 -4
- data/spec/vcr/middleware/rack_spec.rb +4 -4
- data/spec/vcr/structs/http_interaction_spec.rb +61 -0
- data/spec/vcr/structs/request_spec.rb +20 -2
- data/spec/vcr/structs/response_spec.rb +23 -1
- data/spec/vcr/structs/response_status_spec.rb +1 -1
- data/spec/vcr/{cucumber_tags_spec.rb → test_frameworks/cucumber_spec.rb} +12 -8
- data/spec/vcr/{rspec_spec.rb → test_frameworks/rspec_spec.rb} +0 -0
- data/spec/vcr/{hooks_spec.rb → util/hooks_spec.rb} +3 -3
- data/spec/vcr/util/internet_connection_spec.rb +3 -3
- data/spec/vcr_spec.rb +3 -3
- data/vcr.gemspec +5 -5
- metadata +149 -131
- data/Gemfile.lock +0 -155
- data/lib/vcr/deprecations.rb +0 -54
- data/spec/support/disable_warnings.rb +0 -12
- data/spec/support/temp_cassette_library_dir.rb +0 -16
- data/spec/support/webmock_macros.rb +0 -14
- data/spec/vcr/deprecations_spec.rb +0 -139
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vcr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 11
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
-
-
|
8
|
+
- 7
|
9
9
|
- 0
|
10
|
-
version: 1.
|
10
|
+
version: 1.7.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Myron Marston
|
@@ -15,11 +15,14 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-03-01 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
|
22
|
+
prerelease: false
|
23
|
+
type: :development
|
24
|
+
name: faraday
|
25
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
26
|
none: false
|
24
27
|
requirements:
|
25
28
|
- - ~>
|
@@ -30,12 +33,12 @@ dependencies:
|
|
30
33
|
- 5
|
31
34
|
- 3
|
32
35
|
version: 0.5.3
|
33
|
-
|
34
|
-
name: faraday
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: *id001
|
36
|
+
requirement: *id001
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
|
-
|
38
|
+
prerelease: false
|
39
|
+
type: :development
|
40
|
+
name: fakeweb
|
41
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
39
42
|
none: false
|
40
43
|
requirements:
|
41
44
|
- - ~>
|
@@ -46,12 +49,12 @@ dependencies:
|
|
46
49
|
- 3
|
47
50
|
- 0
|
48
51
|
version: 1.3.0
|
49
|
-
|
50
|
-
name: fakeweb
|
51
|
-
prerelease: false
|
52
|
-
version_requirements: *id002
|
52
|
+
requirement: *id002
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
|
-
|
54
|
+
prerelease: false
|
55
|
+
type: :development
|
56
|
+
name: httpclient
|
57
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
55
58
|
none: false
|
56
59
|
requirements:
|
57
60
|
- - ~>
|
@@ -63,12 +66,12 @@ dependencies:
|
|
63
66
|
- 5
|
64
67
|
- 2
|
65
68
|
version: 2.1.5.2
|
66
|
-
|
67
|
-
name: httpclient
|
68
|
-
prerelease: false
|
69
|
-
version_requirements: *id003
|
69
|
+
requirement: *id003
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
|
71
|
+
prerelease: false
|
72
|
+
type: :development
|
73
|
+
name: rake
|
74
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
72
75
|
none: false
|
73
76
|
requirements:
|
74
77
|
- - ~>
|
@@ -79,12 +82,12 @@ dependencies:
|
|
79
82
|
- 8
|
80
83
|
- 7
|
81
84
|
version: 0.8.7
|
82
|
-
|
83
|
-
name: rake
|
84
|
-
prerelease: false
|
85
|
-
version_requirements: *id004
|
85
|
+
requirement: *id004
|
86
86
|
- !ruby/object:Gem::Dependency
|
87
|
-
|
87
|
+
prerelease: false
|
88
|
+
type: :development
|
89
|
+
name: timecop
|
90
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
88
91
|
none: false
|
89
92
|
requirements:
|
90
93
|
- - ~>
|
@@ -95,12 +98,12 @@ dependencies:
|
|
95
98
|
- 3
|
96
99
|
- 5
|
97
100
|
version: 0.3.5
|
98
|
-
|
99
|
-
name: timecop
|
100
|
-
prerelease: false
|
101
|
-
version_requirements: *id005
|
101
|
+
requirement: *id005
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
|
-
|
103
|
+
prerelease: false
|
104
|
+
type: :development
|
105
|
+
name: shoulda
|
106
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
104
107
|
none: false
|
105
108
|
requirements:
|
106
109
|
- - ~>
|
@@ -111,28 +114,27 @@ dependencies:
|
|
111
114
|
- 9
|
112
115
|
- 2
|
113
116
|
version: 2.9.2
|
114
|
-
|
115
|
-
name: shoulda
|
116
|
-
prerelease: false
|
117
|
-
version_requirements: *id006
|
117
|
+
requirement: *id006
|
118
118
|
- !ruby/object:Gem::Dependency
|
119
|
-
|
119
|
+
prerelease: false
|
120
|
+
type: :development
|
121
|
+
name: rspec
|
122
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
120
123
|
none: false
|
121
124
|
requirements:
|
122
125
|
- - ~>
|
123
126
|
- !ruby/object:Gem::Version
|
124
|
-
hash:
|
127
|
+
hash: 9
|
125
128
|
segments:
|
126
129
|
- 2
|
127
|
-
-
|
128
|
-
|
129
|
-
|
130
|
-
type: :development
|
131
|
-
name: rspec
|
132
|
-
prerelease: false
|
133
|
-
version_requirements: *id007
|
130
|
+
- 5
|
131
|
+
version: "2.5"
|
132
|
+
requirement: *id007
|
134
133
|
- !ruby/object:Gem::Dependency
|
135
|
-
|
134
|
+
prerelease: false
|
135
|
+
type: :development
|
136
|
+
name: rack
|
137
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
136
138
|
none: false
|
137
139
|
requirements:
|
138
140
|
- - "="
|
@@ -143,28 +145,28 @@ dependencies:
|
|
143
145
|
- 1
|
144
146
|
- 0
|
145
147
|
version: 1.1.0
|
146
|
-
|
147
|
-
name: rack
|
148
|
-
prerelease: false
|
149
|
-
version_requirements: *id008
|
148
|
+
requirement: *id008
|
150
149
|
- !ruby/object:Gem::Dependency
|
151
|
-
|
150
|
+
prerelease: false
|
151
|
+
type: :development
|
152
|
+
name: aruba
|
153
|
+
version_requirements: &id009 !ruby/object:Gem::Requirement
|
152
154
|
none: false
|
153
155
|
requirements:
|
154
|
-
- -
|
156
|
+
- - "="
|
155
157
|
- !ruby/object:Gem::Version
|
156
|
-
hash:
|
158
|
+
hash: 31
|
157
159
|
segments:
|
158
160
|
- 0
|
159
161
|
- 2
|
160
|
-
-
|
161
|
-
version: 0.2.
|
162
|
-
|
163
|
-
name: aruba
|
164
|
-
prerelease: false
|
165
|
-
version_requirements: *id009
|
162
|
+
- 4
|
163
|
+
version: 0.2.4
|
164
|
+
requirement: *id009
|
166
165
|
- !ruby/object:Gem::Dependency
|
167
|
-
|
166
|
+
prerelease: false
|
167
|
+
type: :development
|
168
|
+
name: sinatra
|
169
|
+
version_requirements: &id010 !ruby/object:Gem::Requirement
|
168
170
|
none: false
|
169
171
|
requirements:
|
170
172
|
- - ~>
|
@@ -175,12 +177,12 @@ dependencies:
|
|
175
177
|
- 1
|
176
178
|
- 0
|
177
179
|
version: 1.1.0
|
178
|
-
|
179
|
-
name: sinatra
|
180
|
-
prerelease: false
|
181
|
-
version_requirements: *id010
|
180
|
+
requirement: *id010
|
182
181
|
- !ruby/object:Gem::Dependency
|
183
|
-
|
182
|
+
prerelease: false
|
183
|
+
type: :development
|
184
|
+
name: bundler
|
185
|
+
version_requirements: &id011 !ruby/object:Gem::Requirement
|
184
186
|
none: false
|
185
187
|
requirements:
|
186
188
|
- - ~>
|
@@ -191,12 +193,12 @@ dependencies:
|
|
191
193
|
- 0
|
192
194
|
- 7
|
193
195
|
version: 1.0.7
|
194
|
-
|
195
|
-
name: bundler
|
196
|
-
prerelease: false
|
197
|
-
version_requirements: *id011
|
196
|
+
requirement: *id011
|
198
197
|
- !ruby/object:Gem::Dependency
|
199
|
-
|
198
|
+
prerelease: false
|
199
|
+
type: :development
|
200
|
+
name: cucumber
|
201
|
+
version_requirements: &id012 !ruby/object:Gem::Requirement
|
200
202
|
none: false
|
201
203
|
requirements:
|
202
204
|
- - ~>
|
@@ -207,12 +209,12 @@ dependencies:
|
|
207
209
|
- 9
|
208
210
|
- 4
|
209
211
|
version: 0.9.4
|
210
|
-
|
211
|
-
name: cucumber
|
212
|
-
prerelease: false
|
213
|
-
version_requirements: *id012
|
212
|
+
requirement: *id012
|
214
213
|
- !ruby/object:Gem::Dependency
|
215
|
-
|
214
|
+
prerelease: false
|
215
|
+
type: :development
|
216
|
+
name: webmock
|
217
|
+
version_requirements: &id013 !ruby/object:Gem::Requirement
|
216
218
|
none: false
|
217
219
|
requirements:
|
218
220
|
- - ~>
|
@@ -223,15 +225,15 @@ dependencies:
|
|
223
225
|
- 6
|
224
226
|
- 0
|
225
227
|
version: 1.6.0
|
226
|
-
|
227
|
-
name: webmock
|
228
|
-
prerelease: false
|
229
|
-
version_requirements: *id013
|
228
|
+
requirement: *id013
|
230
229
|
- !ruby/object:Gem::Dependency
|
231
|
-
|
230
|
+
prerelease: false
|
231
|
+
type: :development
|
232
|
+
name: curb
|
233
|
+
version_requirements: &id014 !ruby/object:Gem::Requirement
|
232
234
|
none: false
|
233
235
|
requirements:
|
234
|
-
- -
|
236
|
+
- - "="
|
235
237
|
- !ruby/object:Gem::Version
|
236
238
|
hash: 19
|
237
239
|
segments:
|
@@ -239,28 +241,28 @@ dependencies:
|
|
239
241
|
- 7
|
240
242
|
- 8
|
241
243
|
version: 0.7.8
|
242
|
-
|
243
|
-
name: curb
|
244
|
-
prerelease: false
|
245
|
-
version_requirements: *id014
|
244
|
+
requirement: *id014
|
246
245
|
- !ruby/object:Gem::Dependency
|
247
|
-
|
246
|
+
prerelease: false
|
247
|
+
type: :development
|
248
|
+
name: patron
|
249
|
+
version_requirements: &id015 !ruby/object:Gem::Requirement
|
248
250
|
none: false
|
249
251
|
requirements:
|
250
|
-
- -
|
252
|
+
- - "="
|
251
253
|
- !ruby/object:Gem::Version
|
252
|
-
hash:
|
254
|
+
hash: 29
|
253
255
|
segments:
|
254
256
|
- 0
|
255
257
|
- 4
|
256
|
-
-
|
257
|
-
version: 0.4.
|
258
|
-
|
259
|
-
name: patron
|
260
|
-
prerelease: false
|
261
|
-
version_requirements: *id015
|
258
|
+
- 9
|
259
|
+
version: 0.4.9
|
260
|
+
requirement: *id015
|
262
261
|
- !ruby/object:Gem::Dependency
|
263
|
-
|
262
|
+
prerelease: false
|
263
|
+
type: :development
|
264
|
+
name: em-http-request
|
265
|
+
version_requirements: &id016 !ruby/object:Gem::Requirement
|
264
266
|
none: false
|
265
267
|
requirements:
|
266
268
|
- - ~>
|
@@ -271,12 +273,12 @@ dependencies:
|
|
271
273
|
- 2
|
272
274
|
- 7
|
273
275
|
version: 0.2.7
|
274
|
-
|
275
|
-
name: em-http-request
|
276
|
-
prerelease: false
|
277
|
-
version_requirements: *id016
|
276
|
+
requirement: *id016
|
278
277
|
- !ruby/object:Gem::Dependency
|
279
|
-
|
278
|
+
prerelease: false
|
279
|
+
type: :development
|
280
|
+
name: typhoeus
|
281
|
+
version_requirements: &id017 !ruby/object:Gem::Requirement
|
280
282
|
none: false
|
281
283
|
requirements:
|
282
284
|
- - ~>
|
@@ -287,11 +289,8 @@ dependencies:
|
|
287
289
|
- 2
|
288
290
|
- 1
|
289
291
|
version: 0.2.1
|
290
|
-
|
291
|
-
|
292
|
-
prerelease: false
|
293
|
-
version_requirements: *id017
|
294
|
-
description: VCR provides helpers to record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests. It works with any ruby testing framework, and provides built-in support for cucumber.
|
292
|
+
requirement: *id017
|
293
|
+
description: VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks.
|
295
294
|
email: myron.marston@gmail.com
|
296
295
|
executables: []
|
297
296
|
|
@@ -301,12 +300,13 @@ extra_rdoc_files: []
|
|
301
300
|
|
302
301
|
files:
|
303
302
|
- .document
|
303
|
+
- .gemtest
|
304
304
|
- .gitignore
|
305
305
|
- .gitmodules
|
306
306
|
- .rspec
|
307
|
+
- .travis.yml
|
307
308
|
- CHANGELOG.md
|
308
309
|
- Gemfile
|
309
|
-
- Gemfile.lock
|
310
310
|
- Guardfile
|
311
311
|
- LICENSE
|
312
312
|
- README.md
|
@@ -314,19 +314,22 @@ files:
|
|
314
314
|
- benchmarks/http_stubbing_libraries.rb
|
315
315
|
- cucumber.yml
|
316
316
|
- features/.nav
|
317
|
-
- features/
|
317
|
+
- features/about_the_cucumber_features.md
|
318
318
|
- features/cassettes/automatic_re_recording.feature
|
319
319
|
- features/cassettes/dynamic_erb.feature
|
320
320
|
- features/cassettes/format.feature
|
321
321
|
- features/cassettes/no_cassette.feature
|
322
322
|
- features/cassettes/request_matching.feature
|
323
|
+
- features/cassettes/update_content_length_header.feature
|
323
324
|
- features/configuration/allow_http_connections_when_no_cassette.feature
|
324
325
|
- features/configuration/cassette_library_dir.feature
|
325
326
|
- features/configuration/default_cassette_options.feature
|
327
|
+
- features/configuration/filter_sensitive_data.feature
|
326
328
|
- features/configuration/hooks.feature
|
327
329
|
- features/configuration/ignore_hosts.feature
|
328
330
|
- features/configuration/ignore_localhost.feature
|
329
331
|
- features/configuration/stub_with.feature
|
332
|
+
- features/getting_started.md
|
330
333
|
- features/http_libraries/em_http_request.feature
|
331
334
|
- features/http_libraries/net_http.feature
|
332
335
|
- features/middleware/faraday.feature
|
@@ -334,6 +337,7 @@ files:
|
|
334
337
|
- features/record_modes/all.feature
|
335
338
|
- features/record_modes/new_episodes.feature
|
336
339
|
- features/record_modes/none.feature
|
340
|
+
- features/record_modes/once.feature
|
337
341
|
- features/step_definitions/cli_steps.rb
|
338
342
|
- features/support/aruba_workaround/aruba_patches.rb
|
339
343
|
- features/support/aruba_workaround/background_process.rb
|
@@ -348,11 +352,12 @@ files:
|
|
348
352
|
- lib/vcr/cassette.rb
|
349
353
|
- lib/vcr/cassette/reader.rb
|
350
354
|
- lib/vcr/config.rb
|
351
|
-
- lib/vcr/
|
352
|
-
- lib/vcr/deprecations.rb
|
355
|
+
- lib/vcr/deprecations/cassette.rb
|
356
|
+
- lib/vcr/deprecations/config.rb
|
357
|
+
- lib/vcr/deprecations/http_stubbing_adapters/common.rb
|
358
|
+
- lib/vcr/deprecations/http_stubbing_adapters/fakeweb.rb
|
353
359
|
- lib/vcr/extensions/net_http.rb
|
354
360
|
- lib/vcr/extensions/net_http_response.rb
|
355
|
-
- lib/vcr/hooks.rb
|
356
361
|
- lib/vcr/http_stubbing_adapters/common.rb
|
357
362
|
- lib/vcr/http_stubbing_adapters/fakeweb.rb
|
358
363
|
- lib/vcr/http_stubbing_adapters/faraday.rb
|
@@ -373,10 +378,15 @@ files:
|
|
373
378
|
- lib/vcr/structs/request.rb
|
374
379
|
- lib/vcr/structs/response.rb
|
375
380
|
- lib/vcr/structs/response_status.rb
|
381
|
+
- lib/vcr/test_frameworks/cucumber.rb
|
382
|
+
- lib/vcr/test_frameworks/rspec.rb
|
376
383
|
- lib/vcr/util/basic_object.rb
|
384
|
+
- lib/vcr/util/hooks.rb
|
377
385
|
- lib/vcr/util/internet_connection.rb
|
378
386
|
- lib/vcr/util/ping.rb
|
379
387
|
- lib/vcr/util/regexes.rb
|
388
|
+
- lib/vcr/util/variable_args_block_caller.rb
|
389
|
+
- lib/vcr/util/yaml.rb
|
380
390
|
- lib/vcr/version.rb
|
381
391
|
- script/FullBuildRakeFile
|
382
392
|
- script/full_build
|
@@ -401,25 +411,25 @@ files:
|
|
401
411
|
- spec/fixtures/not_1.9.1/match_requests_on.yml
|
402
412
|
- spec/monkey_patches.rb
|
403
413
|
- spec/spec_helper.rb
|
404
|
-
- spec/support/disable_warnings.rb
|
405
414
|
- spec/support/fixnum_extension.rb
|
406
415
|
- spec/support/http_library_adapters.rb
|
407
|
-
- spec/support/http_stubbing_adapter.rb
|
408
|
-
- spec/support/normalizers.rb
|
409
416
|
- spec/support/ruby_interpreter.rb
|
417
|
+
- spec/support/shared_example_groups/http_library.rb
|
418
|
+
- spec/support/shared_example_groups/http_stubbing_adapter.rb
|
419
|
+
- spec/support/shared_example_groups/ignore_localhost_deprecation.rb
|
420
|
+
- spec/support/shared_example_groups/normalizers.rb
|
421
|
+
- spec/support/shared_example_groups/version_checking.rb
|
410
422
|
- spec/support/sinatra_app.rb
|
411
|
-
- spec/support/temp_cassette_library_dir.rb
|
412
423
|
- spec/support/vcr_localhost_server.rb
|
413
|
-
- spec/support/version_checker.rb
|
414
|
-
- spec/support/webmock_macros.rb
|
415
424
|
- spec/vcr/cassette/reader_spec.rb
|
416
425
|
- spec/vcr/cassette_spec.rb
|
417
426
|
- spec/vcr/config_spec.rb
|
418
|
-
- spec/vcr/
|
419
|
-
- spec/vcr/
|
427
|
+
- spec/vcr/deprecations/cassette_spec.rb
|
428
|
+
- spec/vcr/deprecations/config_spec.rb
|
429
|
+
- spec/vcr/deprecations/http_stubbing_adapters/common_spec.rb
|
430
|
+
- spec/vcr/deprecations/http_stubbing_adapters/fakeweb_spec.rb
|
420
431
|
- spec/vcr/extensions/net_http_response_spec.rb
|
421
432
|
- spec/vcr/extensions/net_http_spec.rb
|
422
|
-
- spec/vcr/hooks_spec.rb
|
423
433
|
- spec/vcr/http_stubbing_adapters/fakeweb_spec.rb
|
424
434
|
- spec/vcr/http_stubbing_adapters/faraday_spec.rb
|
425
435
|
- spec/vcr/http_stubbing_adapters/multi_object_proxy_spec.rb
|
@@ -429,11 +439,13 @@ files:
|
|
429
439
|
- spec/vcr/middleware/faraday_spec.rb
|
430
440
|
- spec/vcr/middleware/rack_spec.rb
|
431
441
|
- spec/vcr/request_matcher_spec.rb
|
432
|
-
- spec/vcr/rspec_spec.rb
|
433
442
|
- spec/vcr/structs/http_interaction_spec.rb
|
434
443
|
- spec/vcr/structs/request_spec.rb
|
435
444
|
- spec/vcr/structs/response_spec.rb
|
436
445
|
- spec/vcr/structs/response_status_spec.rb
|
446
|
+
- spec/vcr/test_frameworks/cucumber_spec.rb
|
447
|
+
- spec/vcr/test_frameworks/rspec_spec.rb
|
448
|
+
- spec/vcr/util/hooks_spec.rb
|
437
449
|
- spec/vcr/util/internet_connection_spec.rb
|
438
450
|
- spec/vcr/version_spec.rb
|
439
451
|
- spec/vcr_spec.rb
|
@@ -472,24 +484,27 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
472
484
|
requirements: []
|
473
485
|
|
474
486
|
rubyforge_project:
|
475
|
-
rubygems_version: 1.
|
487
|
+
rubygems_version: 1.5.2
|
476
488
|
signing_key:
|
477
489
|
specification_version: 3
|
478
490
|
summary: Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.
|
479
491
|
test_files:
|
480
|
-
- features/
|
492
|
+
- features/about_the_cucumber_features.md
|
481
493
|
- features/cassettes/automatic_re_recording.feature
|
482
494
|
- features/cassettes/dynamic_erb.feature
|
483
495
|
- features/cassettes/format.feature
|
484
496
|
- features/cassettes/no_cassette.feature
|
485
497
|
- features/cassettes/request_matching.feature
|
498
|
+
- features/cassettes/update_content_length_header.feature
|
486
499
|
- features/configuration/allow_http_connections_when_no_cassette.feature
|
487
500
|
- features/configuration/cassette_library_dir.feature
|
488
501
|
- features/configuration/default_cassette_options.feature
|
502
|
+
- features/configuration/filter_sensitive_data.feature
|
489
503
|
- features/configuration/hooks.feature
|
490
504
|
- features/configuration/ignore_hosts.feature
|
491
505
|
- features/configuration/ignore_localhost.feature
|
492
506
|
- features/configuration/stub_with.feature
|
507
|
+
- features/getting_started.md
|
493
508
|
- features/http_libraries/em_http_request.feature
|
494
509
|
- features/http_libraries/net_http.feature
|
495
510
|
- features/middleware/faraday.feature
|
@@ -497,6 +512,7 @@ test_files:
|
|
497
512
|
- features/record_modes/all.feature
|
498
513
|
- features/record_modes/new_episodes.feature
|
499
514
|
- features/record_modes/none.feature
|
515
|
+
- features/record_modes/once.feature
|
500
516
|
- features/step_definitions/cli_steps.rb
|
501
517
|
- features/support/aruba_workaround/aruba_patches.rb
|
502
518
|
- features/support/aruba_workaround/background_process.rb
|
@@ -527,25 +543,25 @@ test_files:
|
|
527
543
|
- spec/fixtures/not_1.9.1/match_requests_on.yml
|
528
544
|
- spec/monkey_patches.rb
|
529
545
|
- spec/spec_helper.rb
|
530
|
-
- spec/support/disable_warnings.rb
|
531
546
|
- spec/support/fixnum_extension.rb
|
532
547
|
- spec/support/http_library_adapters.rb
|
533
|
-
- spec/support/http_stubbing_adapter.rb
|
534
|
-
- spec/support/normalizers.rb
|
535
548
|
- spec/support/ruby_interpreter.rb
|
549
|
+
- spec/support/shared_example_groups/http_library.rb
|
550
|
+
- spec/support/shared_example_groups/http_stubbing_adapter.rb
|
551
|
+
- spec/support/shared_example_groups/ignore_localhost_deprecation.rb
|
552
|
+
- spec/support/shared_example_groups/normalizers.rb
|
553
|
+
- spec/support/shared_example_groups/version_checking.rb
|
536
554
|
- spec/support/sinatra_app.rb
|
537
|
-
- spec/support/temp_cassette_library_dir.rb
|
538
555
|
- spec/support/vcr_localhost_server.rb
|
539
|
-
- spec/support/version_checker.rb
|
540
|
-
- spec/support/webmock_macros.rb
|
541
556
|
- spec/vcr/cassette/reader_spec.rb
|
542
557
|
- spec/vcr/cassette_spec.rb
|
543
558
|
- spec/vcr/config_spec.rb
|
544
|
-
- spec/vcr/
|
545
|
-
- spec/vcr/
|
559
|
+
- spec/vcr/deprecations/cassette_spec.rb
|
560
|
+
- spec/vcr/deprecations/config_spec.rb
|
561
|
+
- spec/vcr/deprecations/http_stubbing_adapters/common_spec.rb
|
562
|
+
- spec/vcr/deprecations/http_stubbing_adapters/fakeweb_spec.rb
|
546
563
|
- spec/vcr/extensions/net_http_response_spec.rb
|
547
564
|
- spec/vcr/extensions/net_http_spec.rb
|
548
|
-
- spec/vcr/hooks_spec.rb
|
549
565
|
- spec/vcr/http_stubbing_adapters/fakeweb_spec.rb
|
550
566
|
- spec/vcr/http_stubbing_adapters/faraday_spec.rb
|
551
567
|
- spec/vcr/http_stubbing_adapters/multi_object_proxy_spec.rb
|
@@ -555,11 +571,13 @@ test_files:
|
|
555
571
|
- spec/vcr/middleware/faraday_spec.rb
|
556
572
|
- spec/vcr/middleware/rack_spec.rb
|
557
573
|
- spec/vcr/request_matcher_spec.rb
|
558
|
-
- spec/vcr/rspec_spec.rb
|
559
574
|
- spec/vcr/structs/http_interaction_spec.rb
|
560
575
|
- spec/vcr/structs/request_spec.rb
|
561
576
|
- spec/vcr/structs/response_spec.rb
|
562
577
|
- spec/vcr/structs/response_status_spec.rb
|
578
|
+
- spec/vcr/test_frameworks/cucumber_spec.rb
|
579
|
+
- spec/vcr/test_frameworks/rspec_spec.rb
|
580
|
+
- spec/vcr/util/hooks_spec.rb
|
563
581
|
- spec/vcr/util/internet_connection_spec.rb
|
564
582
|
- spec/vcr/version_spec.rb
|
565
583
|
- spec/vcr_spec.rb
|