rail-locator-api 1.0.24 → 1.0.25
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/rail-locator-api/api_request.rb +2 -0
- data/lib/rail-locator-api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec94ff63c6bc94eb76d7e9897b63af9d2b61d246a115f5574e3aa76cf87cbff8
|
4
|
+
data.tar.gz: 28a848cb001d8def4ec0f35178d907a4ab6f87483f187e8fdbdcadda28697035
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31f7ce95a453edd9c14ce565f6f074b6f42a9e98bbb4e2fd6141cf98055b2e9312bd9d3f7e4b3081822ff76834b47ff5be1ec10d44457ba329ba675407e4f50a
|
7
|
+
data.tar.gz: 166ce1b64503b7f9a5378fe6e0287d6ee2027154a2d20948397622ecf9a62f123ff7218e846a28275edac725859a9318040af9528d6c5c024270eeee1761ba4b
|
@@ -364,6 +364,8 @@ class Object
|
|
364
364
|
def to_params(key)
|
365
365
|
if self.is_a? ActionDispatch::Http::UploadedFile
|
366
366
|
[key.to_param, File.open(self.path)]
|
367
|
+
elsif %w[File Tempfile StringIO].include?(self.class.name)
|
368
|
+
self
|
367
369
|
else
|
368
370
|
[key.to_param, to_param.to_s]
|
369
371
|
end
|