fastapi 0.1.20 → 0.1.21
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/fastapi.rb +5 -4
- 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: cbe0935ccea237da3b9b90ace9fe9501d0c92f18
|
4
|
+
data.tar.gz: 3f8182bf71795fa7d08e103ca69cbb7e361d99b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebcde37b344f6a1fd9795085d758a492d7f9e26b0f3eb5ba6457996a849defdd811c19d605ddd09560ea7643287d557b597c7d5b6ee303ebb2dd30d3e156c3ff
|
7
|
+
data.tar.gz: a42d6d5d3d8ff6e9b9d5995909d2c9609f4843d68eff594d43bcd77a20df579483b25e333027b54498453cb83e9acd65a971838673f547f98f6f05b23f20e8a7
|
data/lib/fastapi.rb
CHANGED
@@ -476,15 +476,16 @@ class FastAPI
|
|
476
476
|
end
|
477
477
|
|
478
478
|
cur_row[fields[entry_index]] = api_convert_type(str[i...nextIndex], types[entry_index])
|
479
|
+
|
479
480
|
entry_index = entry_index + 1
|
480
481
|
|
481
482
|
i = nextIndex + 1
|
482
483
|
|
483
|
-
|
484
|
+
elsif c == ','
|
484
485
|
|
485
|
-
|
486
|
-
|
487
|
-
|
486
|
+
i = i + 1
|
487
|
+
|
488
|
+
else
|
488
489
|
|
489
490
|
parensIndex = str.index(')', i)
|
490
491
|
nextIndex = str.index(',', i)
|