idata 0.1.19 → 0.1.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/iexport +9 -1
  3. data/lib/idata/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1985e1bd16e82afcc2ba3a3a36de57b5ee64ddb4
4
- data.tar.gz: 2488fd3adbb5d23220457f24bb74b9d227dcf804
3
+ metadata.gz: 94f33938c4b8c1bb1e05edb8d2f7ad8f84e426e7
4
+ data.tar.gz: 684cb978e6b4229572d3a437ded91a3a24e5148f
5
5
  SHA512:
6
- metadata.gz: 27400eefab207ebbe468547b0fa2e503a3c686da03acb6ff392c27ca4e9655fc51ecb605ca85b4b877375be9fa59d554e05634d8fa81ffd52200762d63eb7e4c
7
- data.tar.gz: 4674a625e4460e47ec1c713cd3692f8aa3bbbe63bdbfd79838ff44c9e57bce59dc548cfc04d008bcc7767b6b26cb2d61db2fc1541cf7c5819d2bf837a38bb066
6
+ metadata.gz: 715f13b288db1dd5f49b80c34ff93023277ed8b9aa6cbed47614aa93ab5db4a1a185511a8a9bddcad03a9fa8102f072e9beca7674dbcac2e9662217c0e7b22a1
7
+ data.tar.gz: 40c8e9880aedb64d5bbe5e5e2fff8e6c101b44d37896013063b6a2c9d3507818cd2d6bc2f445d22770f4e4838e7cfcba39843bf8b558b4821ac2839a9ce5e94e
@@ -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*/)
@@ -1,3 +1,3 @@
1
1
  module Idata
2
- VERSION = "0.1.19"
2
+ VERSION = "0.1.20"
3
3
  end
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.19
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-09 00:00:00.000000000 Z
11
+ date: 2014-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler