csvr 0.6.4 → 0.6.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/csvr/cli.rb +3 -1
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 789a7239097ad9d884c82b7a7bcbf298fef1b826
4
- data.tar.gz: 96ad3a695520bdf9d5700a9ff5198be02113dc21
3
+ metadata.gz: 50db2ab637eeabb92ddcb917b6810d08ec49977c
4
+ data.tar.gz: 4aac9b7f56bc7a4ab57ece05d69b32b00931b75b
5
5
  SHA512:
6
- metadata.gz: 0e1a4d28b7c8e5cd15efaa9d3d68b3e8ca79e4f39e406c295381257ece8d352b24c8e2d86115936a6fa1fa6978a3577bb826b2534eb5fe79807711373abdea4c
7
- data.tar.gz: 19a76f753cd1b7f4a8063def916400204119bf20338e82f5c24096bcabca1a2413a7efce07803d4492f8411a0bac28801787102ff1e1d61458b1bd81b37a7026
6
+ metadata.gz: fbc3e1b112549036c47e609c063946435b5e43fb3e135490c8ccf180105ba20a3c05f8e2dd6fcec6f61e7b24e23b71ed51f54c8739fcbbe104e12d677a3ee2e4
7
+ data.tar.gz: 0c1edd333be5bf59a51bde70fd9f35fd3a93216f4ce19cf23efb49b2adf7a789609cca728cb993f12c05abe406c4c3fb597e2b4994339afc2bfdd94cbafaf760
data/lib/csvr/cli.rb CHANGED
@@ -8,13 +8,15 @@ module CSVR
8
8
  def api
9
9
 
10
10
  outputs = []
11
- outputs << "\t require 'csvr' "
11
+ outputs << "\trequire 'csvr' "
12
12
  outputs << "\tcsvr = CSVR.open('path/to/file')"
13
13
  outputs << "\t(optional) csvr.headers = ['array','of','custom', 'headers]"
14
14
  outputs << "\t(optional) csvr.filters = ['array', 'of' 'strings' 'to' 'parse']"
15
15
  outputs << "\tcsvr.create('db_name', 'table_name')"
16
16
 
17
+ puts '\n\n'
17
18
  outputs.each { |x| puts x }
19
+ puts '\n\n'
18
20
 
19
21
  end
20
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csvr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Smith