parliament-ruby 1.0.0.pre2 → 1.0.0.pre3
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/lib/parliament/request/base_request.rb +1 -1
- data/lib/parliament/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: 05af5b9c52c73118177ca2063f26ec7d907530d9
|
|
4
|
+
data.tar.gz: b9ad0d07d5590b3049c73c739fc8bffc390d6863
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32a7bff4fcccb8ee812e910b01866a7198c1a1487525411161b1e3555e5a792128442df78ddbc3a69b4a0f8db909f7821a352a9ff798fa83f20b6c4296fc6c74
|
|
7
|
+
data.tar.gz: 7561e825f4148fc2daaed7703287b27718b7972edf0bed1e9f5bd09f5f1bbf5d6701517e75f86285b36de5baf131657bceb349ef34643a54bc786b4abdd5e779
|
|
@@ -195,7 +195,7 @@ module Parliament
|
|
|
195
195
|
endpoint = URI.parse(query_url)
|
|
196
196
|
|
|
197
197
|
temp_params = query_params
|
|
198
|
-
temp_params = temp_params.merge(URI.decode_www_form(endpoint.query)) if endpoint.query
|
|
198
|
+
temp_params = temp_params.merge(URI.decode_www_form(endpoint.query).to_h) if endpoint.query
|
|
199
199
|
temp_params = temp_params.merge(additional_params) unless additional_params.nil?
|
|
200
200
|
|
|
201
201
|
endpoint.query = nil
|
data/lib/parliament/version.rb
CHANGED