StephanZ-fastercsv 1.4.0
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.
- data/AUTHORS +1 -0
- data/CHANGELOG +145 -0
- data/COPYING +340 -0
- data/INSTALL +35 -0
- data/LICENSE +7 -0
- data/README +71 -0
- data/Rakefile +95 -0
- data/TODO +6 -0
- data/setup.rb +1360 -0
- data/test/line_endings.gz +0 -0
- data/test/ts_all.rb +20 -0
- metadata +71 -0
Binary file
|
data/test/ts_all.rb
ADDED
@@ -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,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: StephanZ-fastercsv
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- James Edward Gray II
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-05-16 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: FasterCSV is intended as a complete replacement to the CSV standard library. It is significantly faster and smaller while still being pure Ruby code. It also strives for a better interface.
|
17
|
+
email: james@grayproductions.net
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- AUTHORS
|
24
|
+
- COPYING
|
25
|
+
- README
|
26
|
+
- INSTALL
|
27
|
+
- TODO
|
28
|
+
- CHANGELOG
|
29
|
+
- LICENSE
|
30
|
+
files:
|
31
|
+
- Rakefile
|
32
|
+
- setup.rb
|
33
|
+
- test/line_endings.gz
|
34
|
+
- AUTHORS
|
35
|
+
- COPYING
|
36
|
+
- README
|
37
|
+
- INSTALL
|
38
|
+
- TODO
|
39
|
+
- CHANGELOG
|
40
|
+
- LICENSE
|
41
|
+
has_rdoc: true
|
42
|
+
homepage: http://fastercsv.rubyforge.org
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options:
|
45
|
+
- --title
|
46
|
+
- FasterCSV Documentation
|
47
|
+
- --main
|
48
|
+
- README
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
56
|
+
version:
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
version:
|
63
|
+
requirements: []
|
64
|
+
|
65
|
+
rubyforge_project: fastercsv
|
66
|
+
rubygems_version: 1.2.0
|
67
|
+
signing_key:
|
68
|
+
specification_version: 2
|
69
|
+
summary: FasterCSV is CSV, but faster, smaller, and cleaner.
|
70
|
+
test_files:
|
71
|
+
- test/ts_all.rb
|