fastercsv 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -1
- data/Rakefile +1 -1
- metadata +35 -38
data/CHANGELOG
CHANGED
@@ -2,9 +2,13 @@
|
|
2
2
|
|
3
3
|
Below is a complete listing of changes for each revision of FasterCSV.
|
4
4
|
|
5
|
+
== 0.1.2
|
6
|
+
|
7
|
+
* Built gem with Ruby 1.8.2, to bypass YAML/RubyGems issue.
|
8
|
+
|
5
9
|
== 0.1.1
|
6
10
|
|
7
|
-
* Built gem with Ruby 1.8.4 Preview 1, to bypass YAML/RubyGems issue.
|
11
|
+
* Built gem with Ruby 1.8.4 Preview 1, to _try_ and bypass YAML/RubyGems issue.
|
8
12
|
* Added missing test file to released packages.
|
9
13
|
* Clarified call-seq documentation for open() and parse().
|
10
14
|
* Clarified passed String positions for new(), in documentation.
|
data/Rakefile
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
!ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
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.
|
6
|
+
version: 0.1.2
|
7
7
|
date: 2005-11-16 00:00:00 -06:00
|
8
|
-
summary: FasterCSV is CSV, but faster, smaller, and cleaner.
|
8
|
+
summary: "FasterCSV is CSV, but faster, smaller, and cleaner."
|
9
9
|
require_paths:
|
10
|
-
- lib
|
10
|
+
- lib
|
11
11
|
email: james@grayproductions.net
|
12
12
|
homepage: http://fastercsv.rubyforge.org
|
13
13
|
rubyforge_project: fastercsv
|
@@ -18,49 +18,46 @@ bindir: bin
|
|
18
18
|
has_rdoc: true
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
-
|
22
|
+
- ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
24
25
|
version:
|
25
26
|
platform: ruby
|
26
27
|
signing_key:
|
27
28
|
cert_chain:
|
28
29
|
authors:
|
29
|
-
- James Edward Gray II
|
30
|
+
- James Edward Gray II
|
30
31
|
files:
|
31
|
-
- lib/faster_csv.rb
|
32
|
-
- test/tc_csv_parsing.rb
|
33
|
-
- test/tc_csv_writing.rb
|
34
|
-
- test/tc_features.rb
|
35
|
-
- test/tc_interface.rb
|
36
|
-
- test/tc_speed.rb
|
37
|
-
- test/ts_all.rb
|
38
|
-
- test/test_data.csv
|
39
|
-
- Rakefile
|
40
|
-
- setup.rb
|
41
|
-
- README
|
42
|
-
- INSTALL
|
43
|
-
- TODO
|
44
|
-
- CHANGELOG
|
45
|
-
- LICENSE
|
32
|
+
- lib/faster_csv.rb
|
33
|
+
- test/tc_csv_parsing.rb
|
34
|
+
- test/tc_csv_writing.rb
|
35
|
+
- test/tc_features.rb
|
36
|
+
- test/tc_interface.rb
|
37
|
+
- test/tc_speed.rb
|
38
|
+
- test/ts_all.rb
|
39
|
+
- test/test_data.csv
|
40
|
+
- Rakefile
|
41
|
+
- setup.rb
|
42
|
+
- README
|
43
|
+
- INSTALL
|
44
|
+
- TODO
|
45
|
+
- CHANGELOG
|
46
|
+
- LICENSE
|
46
47
|
test_files:
|
47
|
-
- test/ts_all.rb
|
48
|
+
- test/ts_all.rb
|
48
49
|
rdoc_options:
|
49
|
-
- --title
|
50
|
-
- FasterCSV Documentation
|
51
|
-
- --main
|
52
|
-
- README
|
50
|
+
- "--title"
|
51
|
+
- FasterCSV Documentation
|
52
|
+
- "--main"
|
53
|
+
- README
|
53
54
|
extra_rdoc_files:
|
54
|
-
- README
|
55
|
-
- INSTALL
|
56
|
-
- TODO
|
57
|
-
- CHANGELOG
|
58
|
-
- LICENSE
|
55
|
+
- README
|
56
|
+
- INSTALL
|
57
|
+
- TODO
|
58
|
+
- CHANGELOG
|
59
|
+
- LICENSE
|
59
60
|
executables: []
|
60
|
-
|
61
61
|
extensions: []
|
62
|
-
|
63
62
|
requirements: []
|
64
|
-
|
65
|
-
dependencies: []
|
66
|
-
|
63
|
+
dependencies: []
|