rail-locator-api 1.0.25 → 1.0.27
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 +7 -2
- 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: 95859025aced9cb868cdc35eebeb6d871e82c465e70d85636528f6b061af48ba
|
4
|
+
data.tar.gz: '0961aab8bb120e0c09345d421d883161050a3e84bc0cda4d69ad86c9aa232745'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d97cedfa807962dcdc104d6b1a95582245281646118533693e87c517e6bc596b36760683e7d93ce4b6c5011ea8148629b49e2ed849db1d079136908decff6940
|
7
|
+
data.tar.gz: e38ffc250727630f4ce67253c259d23a315b90283eb42eefcfa4821d2970b7db28c1345115d1d88212309027a2e205c1209e64286d7c93c0eb3c2424f69f883b
|
@@ -247,7 +247,7 @@ module RailLocatorApi
|
|
247
247
|
result = is_multipart?(item, result)
|
248
248
|
end
|
249
249
|
result
|
250
|
-
elsif
|
250
|
+
elsif [ActionDispatch::Http::UploadedFile, StringIO, Tempfile, File].include?(body.class)
|
251
251
|
return true
|
252
252
|
else
|
253
253
|
result || false
|
@@ -363,7 +363,12 @@ end
|
|
363
363
|
class Object
|
364
364
|
def to_params(key)
|
365
365
|
if self.is_a? ActionDispatch::Http::UploadedFile
|
366
|
-
[key.to_param, File.open(self.path)
|
366
|
+
[key.to_param, File.open(self.path),
|
367
|
+
{
|
368
|
+
:filename => self.original_filename,
|
369
|
+
:content_type => self.content_type
|
370
|
+
}
|
371
|
+
]
|
367
372
|
elsif %w[File Tempfile StringIO].include?(self.class.name)
|
368
373
|
self
|
369
374
|
else
|