proxy_rb 0.10.3 → 0.10.4
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/History.md +4 -0
- data/lib/proxy_rb/cucumber/steps.rb +1 -1
- data/lib/proxy_rb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c4140c039086f00ab14580ba60542090e9aa8fb
|
|
4
|
+
data.tar.gz: 1434c82f7819ced45e0cb8efb4a868f6fe40bbb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2b8b59ca5495bdb373adea37c32de248f1011de073f1fe3e836c2512cfe926689f5370e11a2327d70768fcc158aa516158098201d2f1ff4415de713b01b6067
|
|
7
|
+
data.tar.gz: c8dd25257ffa1e7df33e505e96bc65fdd35d894f9466ca95fb9e4010d8d5091687cdcf1fb4cc6b3613d6c03ad5f2e37087b7852304e86ce501ed894e2f608def
|
data/History.md
CHANGED
|
@@ -4,6 +4,10 @@ Empty
|
|
|
4
4
|
|
|
5
5
|
# RELEASED
|
|
6
6
|
|
|
7
|
+
## [v0.10.4](https://github.com/fedux-org/proxy_rb/compare/v0.10.3...v0.10.4)
|
|
8
|
+
|
|
9
|
+
* Don't overwrite proxies set by multiple tags
|
|
10
|
+
|
|
7
11
|
## [v0.10.3](https://github.com/fedux-org/proxy_rb/compare/v0.10.2...v0.10.3)
|
|
8
12
|
|
|
9
13
|
* Setting user information now works with default step in Before Hook
|
|
@@ -16,7 +16,7 @@ Given(/^I use the user "([^"]*)"(?: with password "([^"]*)")?$/) do |user_name,
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
Given(/^I use the following proxies:$/) do |table|
|
|
19
|
-
|
|
19
|
+
proxies.concat table.hashes.map do |r|
|
|
20
20
|
p = ProxyRb::HttpProxy.new(ProxyRb::ProxyUrlParser.new(r[:proxy]))
|
|
21
21
|
|
|
22
22
|
# Hide password by using <PASSWORD> => retrieve it using fetcher
|
data/lib/proxy_rb/version.rb
CHANGED