idata 0.1.19 → 0.1.20
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/iexport +9 -1
- data/lib/idata/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 94f33938c4b8c1bb1e05edb8d2f7ad8f84e426e7
|
|
4
|
+
data.tar.gz: 684cb978e6b4229572d3a437ded91a3a24e5148f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 715f13b288db1dd5f49b80c34ff93023277ed8b9aa6cbed47614aa93ab5db4a1a185511a8a9bddcad03a9fa8102f072e9beca7674dbcac2e9662217c0e7b22a1
|
|
7
|
+
data.tar.gz: 40c8e9880aedb64d5bbe5e5e2fff8e6c101b44d37896013063b6a2c9d3507818cd2d6bc2f445d22770f4e4838e7cfcba39843bf8b558b4821ac2839a9ce5e94e
|
data/bin/iexport
CHANGED
|
@@ -174,9 +174,17 @@ $options[:quotes] ||= false
|
|
|
174
174
|
$options[:quote_empty] ||= false
|
|
175
175
|
$options[:select] ||= '*'
|
|
176
176
|
$options[:where] ||= 'true'
|
|
177
|
-
|
|
178
177
|
$options[:include] ||= ""
|
|
179
178
|
|
|
179
|
+
# Do not quote the '"' char
|
|
180
|
+
# For example, normally it quotes
|
|
181
|
+
# Glove 14" length
|
|
182
|
+
# to
|
|
183
|
+
# "Glove 14"" length"
|
|
184
|
+
# The check below prevents this so when --no-quote is set, the output is not quoted
|
|
185
|
+
unless $options[:quotes]
|
|
186
|
+
$options[:quote_char] = "\0"
|
|
187
|
+
end
|
|
180
188
|
|
|
181
189
|
if $options[:exclude]
|
|
182
190
|
$options[:exclude] = $options[:exclude].split(/\s*,\s*/)
|
data/lib/idata/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: idata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nghi Pham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-06-
|
|
11
|
+
date: 2014-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|