fastcsv 0.0.4 → 0.0.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.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/Gemfile +1 -1
- data/LICENSE +1 -1
- data/README.md +12 -17
- data/TESTS.md +4 -5
- data/ext/fastcsv/fastcsv.c +2494 -153
- data/ext/fastcsv/fastcsv.rl +43 -8
- data/fastcsv.gemspec +5 -6
- data/lib/fastcsv.rb +1 -1
- data/spec/fastcsv_spec.rb +0 -1
- data/test/csv/test_csv_parsing.rb +10 -10
- data/test/csv/test_encodings.rb +23 -23
- data/test/csv/test_features.rb +17 -17
- data/test/csv/test_headers.rb +14 -14
- data/test/csv/test_interface.rb +39 -39
- metadata +9 -11
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastcsv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- James McKinney
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: coveralls
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: '1.8'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: '1.8'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,8 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '3.1'
|
83
83
|
description:
|
84
|
-
email:
|
85
|
-
- info@opennorth.ca
|
84
|
+
email:
|
86
85
|
executables: []
|
87
86
|
extensions:
|
88
87
|
- ext/fastcsv/extconf.rb
|
@@ -123,7 +122,7 @@ files:
|
|
123
122
|
- test/csv/ts_all.rb
|
124
123
|
- test/runner.rb
|
125
124
|
- test/with_different_ofs.rb
|
126
|
-
homepage:
|
125
|
+
homepage: https://github.com/jpmckinney/fastcsv
|
127
126
|
licenses:
|
128
127
|
- MIT
|
129
128
|
metadata: {}
|
@@ -143,10 +142,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
142
|
version: '0'
|
144
143
|
requirements: []
|
145
144
|
rubyforge_project:
|
146
|
-
rubygems_version: 2.2.
|
145
|
+
rubygems_version: 2.2.0
|
147
146
|
signing_key:
|
148
147
|
specification_version: 4
|
149
|
-
summary: A fast Ragel-based CSV parser
|
148
|
+
summary: A fast Ragel-based CSV parser, compatible with Ruby's CSV
|
150
149
|
test_files:
|
151
150
|
- spec/fastcsv_spec.rb
|
152
151
|
- spec/fixtures/csv.csv
|
@@ -169,4 +168,3 @@ test_files:
|
|
169
168
|
- test/csv/ts_all.rb
|
170
169
|
- test/runner.rb
|
171
170
|
- test/with_different_ofs.rb
|
172
|
-
has_rdoc:
|