embulk-input-lkqd 0.8.0 → 0.8.1
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/embulk-input-lkqd.gemspec +1 -1
- data/lib/embulk/input/lkqd.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: dc425ea26d393243283be9ac404d3318353beef6
|
|
4
|
+
data.tar.gz: 585ec2117788b37a6dbc9718d7b5b080b172bca0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb662445d41e350d7015bdad6058226e1f0776c18450aa3bc25e90cefa45937c241bd0e83cf642033b1e7796bf4c168aa54c50a5366d6f802e2cc86c27ba901d
|
|
7
|
+
data.tar.gz: 113b2242b3488554af2fa6d6d069025fe92a722b175695fe97893db258401c51495691c3e533b259265c1b78cc81a8fb0886f66a36b112e7fa3d086dfe61ccfa
|
data/embulk-input-lkqd.gemspec
CHANGED
data/lib/embulk/input/lkqd.rb
CHANGED
|
@@ -97,7 +97,7 @@ module Embulk
|
|
|
97
97
|
elsif column_option['type'] == 'double' && value.match(/%$/) # handle x,xxxx.yy%
|
|
98
98
|
next value.gsub(',','').to_f / 100.0
|
|
99
99
|
elsif column_option['type'] == 'double' && value.match(/^\$[\d\.,]+$/) # handle $x,xxxx.yy%
|
|
100
|
-
next value.gsub(/[$,]/,'').to_f
|
|
100
|
+
next value.gsub(/[$,]/,'').to_f
|
|
101
101
|
elsif column_option['type'] == 'double'
|
|
102
102
|
next value.gsub(',','').to_f
|
|
103
103
|
else
|