csvql 0.2.4 → 0.2.5
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/csvql/version.rb +1 -1
- data/lib/csvql.rb +1 -1
- data/spec/csvql_spec.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: bed0a5cc8a2105697059068f974285f7759d6740
|
4
|
+
data.tar.gz: eb9f67e00d7fa495e66898db8ec63a7643db9e1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da2ed707579ba0a38405396db9844eb39b1a5f60464fdb955940ee8faba65fd35b966d964237321be42bb71802fda8391b990db9e9cb89192b6755de2ca35c6f
|
7
|
+
data.tar.gz: 34361aedb693e113b7e48ca4a5b3d1048d793ba78dd3fcb8919ce0e7884ca550d5e24afa7c815dcf5ee807b71e3e19b6ea3e4dc4ef9df872369383cae0b65797
|
data/lib/csvql/version.rb
CHANGED
data/lib/csvql.rb
CHANGED
@@ -18,7 +18,7 @@ module Csvql
|
|
18
18
|
# option[:header] = true
|
19
19
|
|
20
20
|
opt_parser.on("--console", "After all commands are run, open sqlite3 console with this data") {|v| opt.console = v }
|
21
|
-
opt_parser.on("--
|
21
|
+
opt_parser.on("--header", "Treat file as having the first row as a header row") {|v| opt.header = v }
|
22
22
|
opt_parser.on('--output-dlm="|"', "Output delimiter (|)") {|v| opt.output_dlm = v }
|
23
23
|
opt_parser.on("--save-to=FILE", "If set, sqlite3 db is left on disk at this path") {|v| opt.save_to = v }
|
24
24
|
opt_parser.on("--append", "Append mode (not dropping any tables)") {|v| opt.append = v }
|
data/spec/csvql_spec.rb
CHANGED