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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa1d3d222a7c616d23e6930fbc87b592ddc5ba6a
4
- data.tar.gz: 5c99918686897ccb1d5562c0423b37d80d53936d
3
+ metadata.gz: 3c4140c039086f00ab14580ba60542090e9aa8fb
4
+ data.tar.gz: 1434c82f7819ced45e0cb8efb4a868f6fe40bbb2
5
5
  SHA512:
6
- metadata.gz: 3d3d7dc887e5b52713d46449cd71a3733cdf9b8264ed6802b888e23ec2d6214cdb2b84441e96facaeab43e277739ccee11b029a9762a309aaeb80763347196e0
7
- data.tar.gz: b0e1b739ed427900c03ea59e9577d250b065030e83e0730320d48a6c36a37b73523ff97d29b219951ba52403e728133aa3d1b0675a641f2835303674d3c135a5
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
- @proxies = table.hashes.map do |r|
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # Main Module
3
3
  module ProxyRb
4
- VERSION = '0.10.3'
4
+ VERSION = '0.10.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proxy_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer