uncsv 0.3.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/lib/uncsv/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f809dca31e54e862cc5f5d1e7a6c891cd6755fcd9f94eb26595893af662d5157
|
4
|
+
data.tar.gz: 3a8b79576494bc65398c73800d974330fad0f39a3c4f491e5d3637fc1112ae59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04d7b6e1fb7c090967f89b019e4d70c53608720a2d9f2406685542287302b2f2988d7f7edd3aeeb594f001839e5893381dc7278fcb7ee2ef80e6b73ec54ad901
|
7
|
+
data.tar.gz: af26704ec863b03d532879258bdb790376360bc81866cd63ea060c34553346a2da62a25ba65b2065e0b14b5822d0015a6070e7d95956724ebbc505aa1865f085
|
data/README.md
CHANGED
@@ -4,12 +4,20 @@
|
|
4
4
|
[![Build Status](https://travis-ci.org/machinima/uncsv.svg?branch=master)](https://travis-ci.org/machinima/uncsv)
|
5
5
|
[![Code Climate](https://codeclimate.com/github/machinima/uncsv/badges/gpa.svg)](https://codeclimate.com/github/machinima/uncsv)
|
6
6
|
[![Test Coverage](https://codeclimate.com/github/machinima/uncsv/badges/coverage.svg)](https://codeclimate.com/github/machinima/uncsv)
|
7
|
+
[![Inline docs](http://inch-ci.org/github/machinima/uncsv.svg?branch=master)](http://inch-ci.org/github/machinima/uncsv)
|
7
8
|
|
8
9
|
A parser for unruly CSVs
|
9
10
|
|
10
11
|
Parse CSVs with heirarchical headers and duplicated headers. Skip lines by line
|
11
12
|
number, etc.
|
12
13
|
|
14
|
+
## Documentation
|
15
|
+
|
16
|
+
Read below to get started, or see the [API Documentation][api-docs] for more
|
17
|
+
details.
|
18
|
+
|
19
|
+
[api-docs]: https://www.rubydoc.info/github/machinima/uncsv
|
20
|
+
|
13
21
|
## Installation
|
14
22
|
|
15
23
|
Add this line to your application's Gemfile:
|
data/lib/uncsv/version.rb
CHANGED