csvh 0.8.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6323cad1ddf79e484199f5830eb10076b61d04f
4
- data.tar.gz: 779978ad240f9f0a2b1a46f3e316aad5d460f167
3
+ metadata.gz: 1c4523215156963545453690b8bf03b04371c89a
4
+ data.tar.gz: 225d21dd0ec8378d2187f7c73fefab6d95894bc3
5
5
  SHA512:
6
- metadata.gz: 9bc569b2cb0d5008214c42c43fb2f897d67ad44278da745636797cd369bb88ff0e15bc7d60bf5551dead5bd57d5ed414c39cba7d7a1dab35dadd9fed366b05ff
7
- data.tar.gz: ea02ecde2fe229c2551654ff898c02128aff2bbed72796f28712de20664eda7247e42ea329255de28a70f2d6074aafaa263519e7837fed8109593ff9d26f9af3
6
+ metadata.gz: c5d713ec8d47fb2aa63e98fc67487370c5cccf3e23780489d912c04a58a906dc3b3229b8ad962de0900829f7a782833dec2053aa3ec73819bd0aa0985376f183
7
+ data.tar.gz: e3b8d748c72b8409204afc13fd81c0987f3217f4483335f2cfaf059ade570e35c0591afc6ef486f6405cabaebb00da9f8c6544c70caa91a1a76702cd1f186847
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # CSVH
2
2
 
3
- The csvh gem provides convenient augmentations to handling of CSV
4
- files with header rows in Ruby.
3
+ A straightforward API to lazily read headers and data rows from
4
+ CSV, including in cases where no data rows are present.
5
5
 
6
6
  ## Installation
7
7
 
@@ -9,7 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Steve Jorgensen"]
10
10
  spec.email = ["stevej@stevej.name"]
11
11
 
12
- spec.summary = "Convenient augmentations to handling of CSV files with header rows in Ruby"
12
+ spec.summary = "A straightforward API to lazily read headers and data rows from CSV, " \
13
+ "including in cases where no data rows are present."
13
14
  spec.homepage = "https://github.com/stevecj/csvh"
14
15
  spec.license = "MIT"
15
16
 
@@ -1,3 +1,3 @@
1
1
  module CSVH
2
- VERSION = "0.8.0"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csvh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Jorgensen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-03 00:00:00.000000000 Z
11
+ date: 2016-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -95,5 +95,6 @@ rubyforge_project:
95
95
  rubygems_version: 2.6.2
96
96
  signing_key:
97
97
  specification_version: 4
98
- summary: Convenient augmentations to handling of CSV files with header rows in Ruby
98
+ summary: A straightforward API to lazily read headers and data rows from CSV, including
99
+ in cases where no data rows are present.
99
100
  test_files: []