webmock 2.0.0.beta2 → 2.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/lib/webmock/version.rb +1 -1
- data/webmock.gemspec +5 -1
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07a138a8c64902f36eca871bd732a1f16c1a775a
|
|
4
|
+
data.tar.gz: 34f5d60511d7fc5b2dd8a91ea840b455fdc01eaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4704d249edaed69a8c672a4f8b14c2d925cae989baaae04868e6e369b3d55fe8e119ccfc1ad8dfc588fbb3b34076ed3ac6f40c32cc77821f1cad93c7ae3fb0e7
|
|
7
|
+
data.tar.gz: fa6e166b79d79018f3f86abd3f97fdf7ef045d7b4145b2e5e206ec5c744fcf504693a7d401118191f24bb7e4e461125f97cd7b5c3093f8b6fb25b5b0d7b368bb
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## 2.0.0
|
|
4
4
|
|
|
5
|
-
* `require 'webmock'` does not enable WebMock anymore. `gem 'webmock'` can be
|
|
5
|
+
* `require 'webmock'` does not enable WebMock anymore. `gem 'webmock'` can now be safely added to a Gemfile and no http client libs will be modified when it's loaded. Call `WebMock.enable!` to enable WebMock.
|
|
6
6
|
|
|
7
7
|
Please note that `require 'webmock/rspec'`, `require 'webmock/test_unit'`, `require 'webmock/minitest'` and `require 'webmock/cucumber'` still do enable WebMock.
|
|
8
8
|
|
data/lib/webmock/version.rb
CHANGED
data/webmock.gemspec
CHANGED
|
@@ -40,5 +40,9 @@ Gem::Specification.new do |s|
|
|
|
40
40
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
41
41
|
s.require_paths = ['lib']
|
|
42
42
|
|
|
43
|
-
s.post_install_message =
|
|
43
|
+
s.post_install_message = <<-EOM
|
|
44
|
+
|
|
45
|
+
WebMock 2.0 has some breaking changes. Please check the CHANGELOG: https://goo.gl/piDGLu
|
|
46
|
+
|
|
47
|
+
EOM
|
|
44
48
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webmock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bartosz Blimke
|
|
@@ -364,8 +364,10 @@ homepage: http://github.com/bblimke/webmock
|
|
|
364
364
|
licenses:
|
|
365
365
|
- MIT
|
|
366
366
|
metadata: {}
|
|
367
|
-
post_install_message:
|
|
368
|
-
|
|
367
|
+
post_install_message: |2+
|
|
368
|
+
|
|
369
|
+
WebMock 2.0 has some breaking changes. Please check the CHANGELOG: https://goo.gl/piDGLu
|
|
370
|
+
|
|
369
371
|
rdoc_options: []
|
|
370
372
|
require_paths:
|
|
371
373
|
- lib
|
|
@@ -376,9 +378,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
376
378
|
version: 1.9.3
|
|
377
379
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
378
380
|
requirements:
|
|
379
|
-
- - "
|
|
381
|
+
- - ">="
|
|
380
382
|
- !ruby/object:Gem::Version
|
|
381
|
-
version:
|
|
383
|
+
version: '0'
|
|
382
384
|
requirements: []
|
|
383
385
|
rubyforge_project: webmock
|
|
384
386
|
rubygems_version: 2.2.2
|