simple-spreadsheet-extractor 0.8.0 → 0.9.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.
- data/VERSION +1 -1
- data/jars/simple-spreadsheet-extractor-0.9.jar +0 -0
- data/lib/simple-spreadsheet-extractor.rb +1 -1
- data/simple-spreadsheet-extractor.gemspec +8 -4
- data/test/files/not-a-spreadsheet.xls +1 -0
- data/test/files/test-csv-output1-trimmed.csv +2 -0
- data/test/files/test-csv-output1.csv +4 -0
- data/test/files/test-spreadsheet.xls +0 -0
- metadata +10 -6
- data/jars/simple-spreadsheet-extractor-0.7.2.jar +0 -0
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.9.1
|
Binary file
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{simple-spreadsheet-extractor}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.9.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Stuart Owen", "Finn Bacall"]
|
12
|
-
s.date = %q{2012-01-
|
12
|
+
s.date = %q{2012-01-24}
|
13
13
|
s.description = %q{Takes a stream to a spreadsheet file and produces an XML or CSV representation of its contents}
|
14
14
|
s.email = %q{stuart.owen@manchester.ac.uk}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -27,9 +27,13 @@ Gem::Specification.new do |s|
|
|
27
27
|
"jars/lib/poi-ooxml-schemas-3.8-beta4.jar",
|
28
28
|
"jars/lib/poi-rightfield-3.8-beta4.jar",
|
29
29
|
"jars/lib/xmlbeans-2.3.0.jar",
|
30
|
-
"jars/simple-spreadsheet-extractor-0.
|
30
|
+
"jars/simple-spreadsheet-extractor-0.9.jar",
|
31
31
|
"lib/simple-spreadsheet-extractor.rb",
|
32
|
-
"simple-spreadsheet-extractor.gemspec"
|
32
|
+
"simple-spreadsheet-extractor.gemspec",
|
33
|
+
"test/files/not-a-spreadsheet.xls",
|
34
|
+
"test/files/test-csv-output1-trimmed.csv",
|
35
|
+
"test/files/test-csv-output1.csv",
|
36
|
+
"test/files/test-spreadsheet.xls"
|
33
37
|
]
|
34
38
|
s.homepage = %q{http://github.com/myGrid/simple-spreadsheet-extractor-gem}
|
35
39
|
s.require_paths = ["lib"]
|
@@ -0,0 +1 @@
|
|
1
|
+
this is not a spreadsheet
|
Binary file
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple-spreadsheet-extractor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 57
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 9
|
9
|
+
- 1
|
10
|
+
version: 0.9.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Stuart Owen
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-01-
|
19
|
+
date: 2012-01-24 00:00:00 +00:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -55,9 +55,13 @@ files:
|
|
55
55
|
- jars/lib/poi-ooxml-schemas-3.8-beta4.jar
|
56
56
|
- jars/lib/poi-rightfield-3.8-beta4.jar
|
57
57
|
- jars/lib/xmlbeans-2.3.0.jar
|
58
|
-
- jars/simple-spreadsheet-extractor-0.
|
58
|
+
- jars/simple-spreadsheet-extractor-0.9.jar
|
59
59
|
- lib/simple-spreadsheet-extractor.rb
|
60
60
|
- simple-spreadsheet-extractor.gemspec
|
61
|
+
- test/files/not-a-spreadsheet.xls
|
62
|
+
- test/files/test-csv-output1-trimmed.csv
|
63
|
+
- test/files/test-csv-output1.csv
|
64
|
+
- test/files/test-spreadsheet.xls
|
61
65
|
has_rdoc: true
|
62
66
|
homepage: http://github.com/myGrid/simple-spreadsheet-extractor-gem
|
63
67
|
licenses: []
|
Binary file
|