-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathREADME.txt
46 lines (27 loc) · 847 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
= csvscan
http://github.com/sandofsky/csvscan
== DESCRIPTION:
This is a packaged version of CSVScan, written by MoonWolf. If you can read Japanese, checkout README.ja for whatever he said.
On a 10,000 line file:
time cat example.csv | ruby fastercsv_benchmark.rb
real 0m8.804s
user 0m8.502s
sys 0m0.304s
time cat example.csv | ruby csvscan_benchmark.rb
real 0m0.860s
user 0m0.782s
sys 0m0.088s
== FEATURES/PROBLEMS:
* First version.
* I have not tested this on Windows, and have no intention to.
== SYNOPSIS:
require 'csvscan'
CSVScan.scan(STDIN) do |row|
puts row.inspect
end
== REQUIREMENTS:
* FIX (list of requirements)
== INSTALL:
* gem install sandofsky-csvscan --source http://gems.github.com
== LICENSE:
Looks like the original source was LGPL, so I'm stuck with that.