idata 1.2.0 → 1.2.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/bin/iload +5 -8
- data/lib/idata/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: fc5eea0c22fdca45d09a4143663f246f5020f3d0
|
|
4
|
+
data.tar.gz: de44833e9eb5a49ab2434b3a261591c0b5fb6d95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0567719647b88516ec9301adcd23ce58a8e35156ad6781aebfc12e61d051fd2616495672885346556c5230c692f7b93021f1dcbf12a76872e7771e602de0a9db
|
|
7
|
+
data.tar.gz: fce82f2b74e35d4ae80a317df83a21e2cc3f33f937946e8b5dba573026dbd4dd78502ffb0664a36d82be1ab4b510b54a357459d23daf611e683782520c89c533
|
data/bin/iload
CHANGED
|
@@ -356,7 +356,7 @@ class MyParser
|
|
|
356
356
|
|
|
357
357
|
# check if every field name is unique
|
|
358
358
|
if headers.count != headers.uniq.count
|
|
359
|
-
error "duplicate field name
|
|
359
|
+
error "duplicate field name [#{headers.sort.join(', ')}]"
|
|
360
360
|
end
|
|
361
361
|
|
|
362
362
|
# Create table
|
|
@@ -408,10 +408,7 @@ class MyParser
|
|
|
408
408
|
end
|
|
409
409
|
end
|
|
410
410
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
puts "\n\n*********** ERROR ***********\n#{ex.message}\n\n"
|
|
416
|
-
exit
|
|
417
|
-
end
|
|
411
|
+
# Run!
|
|
412
|
+
e = MyParser.new
|
|
413
|
+
e.run
|
|
414
|
+
|
data/lib/idata/version.rb
CHANGED