fastercsv 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +16 -0
- data/Rakefile +1 -1
- data/TODO +0 -5
- data/lib/faster_csv.rb +655 -40
- data/test/tc_csv_parsing.rb +2 -2
- data/test/tc_data_converters.rb +166 -0
- data/test/tc_features.rb +18 -0
- data/test/tc_headers.rb +125 -0
- data/test/tc_interface.rb +28 -0
- data/test/tc_row.rb +264 -0
- data/test/ts_all.rb +3 -0
- metadata +41 -35
data/test/ts_all.rb
CHANGED
metadata
CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: fastercsv
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
7
|
-
date:
|
8
|
-
summary:
|
6
|
+
version: 0.1.6
|
7
|
+
date: 2006-02-25 00:00:00 -06:00
|
8
|
+
summary: FasterCSV is CSV, but faster, smaller, and cleaner.
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: james@grayproductions.net
|
12
12
|
homepage: http://fastercsv.rubyforge.org
|
13
13
|
rubyforge_project: fastercsv
|
@@ -18,46 +18,52 @@ bindir: bin
|
|
18
18
|
has_rdoc: true
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
25
24
|
version:
|
26
25
|
platform: ruby
|
27
26
|
signing_key:
|
28
27
|
cert_chain:
|
29
28
|
authors:
|
30
|
-
|
29
|
+
- James Edward Gray II
|
31
30
|
files:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
31
|
+
- lib/faster_csv.rb
|
32
|
+
- test/tc_csv_parsing.rb
|
33
|
+
- test/tc_csv_writing.rb
|
34
|
+
- test/tc_data_converters.rb
|
35
|
+
- test/tc_features.rb
|
36
|
+
- test/tc_headers.rb
|
37
|
+
- test/tc_interface.rb
|
38
|
+
- test/tc_row.rb
|
39
|
+
- test/tc_speed.rb
|
40
|
+
- test/ts_all.rb
|
41
|
+
- test/test_data.csv
|
42
|
+
- Rakefile
|
43
|
+
- setup.rb
|
44
|
+
- README
|
45
|
+
- INSTALL
|
46
|
+
- TODO
|
47
|
+
- CHANGELOG
|
48
|
+
- LICENSE
|
47
49
|
test_files:
|
48
|
-
|
50
|
+
- test/ts_all.rb
|
49
51
|
rdoc_options:
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
52
|
+
- --title
|
53
|
+
- FasterCSV Documentation
|
54
|
+
- --main
|
55
|
+
- README
|
54
56
|
extra_rdoc_files:
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
57
|
+
- README
|
58
|
+
- INSTALL
|
59
|
+
- TODO
|
60
|
+
- CHANGELOG
|
61
|
+
- LICENSE
|
60
62
|
executables: []
|
63
|
+
|
61
64
|
extensions: []
|
65
|
+
|
62
66
|
requirements: []
|
63
|
-
|
67
|
+
|
68
|
+
dependencies: []
|
69
|
+
|