b2b2dot0-fastercsv 1.4.1

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.
@@ -0,0 +1,20 @@
1
+ #!/usr/local/bin/ruby -w
2
+
3
+ # ts_all.rb
4
+ #
5
+ # Created by James Edward Gray II on 2005-11-14.
6
+ # Copyright 2005 Gray Productions. All rights reserved.
7
+
8
+ require "test/unit"
9
+
10
+ require "tc_csv_parsing"
11
+ require "tc_features"
12
+ require "tc_interface"
13
+ require "tc_csv_writing"
14
+ require "tc_speed"
15
+ require "tc_data_converters"
16
+ require "tc_row"
17
+ require "tc_table"
18
+ require "tc_headers"
19
+ require "tc_serialization"
20
+ require "tc_encodings"
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: b2b2dot0-fastercsv
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.1
5
+ platform: ruby
6
+ authors:
7
+ - James Edward Gray II
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2013-04-29 00:00:00 Z
13
+ dependencies: []
14
+
15
+ description: |
16
+ FasterCSV is intended as a complete replacement to the CSV standard library. It
17
+ is significantly faster and smaller while still being pure Ruby code. It also
18
+ strives for a better interface.
19
+
20
+ email: james@grayproductions.net
21
+ executables: []
22
+
23
+ extensions: []
24
+
25
+ extra_rdoc_files:
26
+ - AUTHORS
27
+ - COPYING
28
+ - README.md
29
+ - INSTALL
30
+ - TODO
31
+ - CHANGELOG
32
+ - LICENSE
33
+ files:
34
+ - lib/faster_csv.rb
35
+ - lib/fastercsv.rb
36
+ - test/tc_csv_parsing.rb
37
+ - test/tc_csv_writing.rb
38
+ - test/tc_data_converters.rb
39
+ - test/tc_encodings.rb
40
+ - test/tc_features.rb
41
+ - test/tc_headers.rb
42
+ - test/tc_interface.rb
43
+ - test/tc_row.rb
44
+ - test/tc_serialization.rb
45
+ - test/tc_speed.rb
46
+ - test/tc_table.rb
47
+ - test/ts_all.rb
48
+ - examples/csv_converters.rb
49
+ - examples/csv_filter.rb
50
+ - examples/csv_reading.rb
51
+ - examples/csv_table.rb
52
+ - examples/csv_writing.rb
53
+ - examples/shortcut_interface.rb
54
+ - test/test_data.csv
55
+ - examples/purchase.csv
56
+ - Rakefile
57
+ - setup.rb
58
+ - AUTHORS
59
+ - COPYING
60
+ - README.md
61
+ - INSTALL
62
+ - TODO
63
+ - CHANGELOG
64
+ - LICENSE
65
+ homepage: http://fastercsv.rubyforge.org
66
+ licenses: []
67
+
68
+ metadata: {}
69
+
70
+ post_install_message:
71
+ rdoc_options:
72
+ - --title
73
+ - FasterCSV Documentation
74
+ - --main
75
+ - README.md
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - &id001
81
+ - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - *id001
87
+ requirements: []
88
+
89
+ rubyforge_project: fastercsv
90
+ rubygems_version: 2.0.3
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: FasterCSV is CSV, but faster, smaller, and cleaner.
94
+ test_files:
95
+ - test/ts_all.rb