simple-spreadsheet-extractor 0.6.0 → 0.6.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.
File without changes
data/README.rdoc CHANGED
@@ -1,7 +1,7 @@
1
1
  = Simple Spreadsheet Extractor
2
2
 
3
3
  Authors:: Stuart Owen, Finn Bacall
4
- Version:: 0.6.0
4
+ Version:: 0.6.1
5
5
  Contact:: mailto:stuart.owen@manchester.ac.uk
6
6
  Licence:: BSD (See LICENCE or http://www.opensource.org/licenses/bsd-license.php)
7
7
  Copyright:: (c) 2010 The University of Manchester, UK
@@ -36,7 +36,7 @@ Note that on Windows you must also do:
36
36
 
37
37
  e.g.
38
38
 
39
- #example.rb - takes path, i.e. ruby example.rb /tmp/spreadsheet.xls
39
+ #examples/example.rb - takes path, i.e. ruby example.rb /tmp/spreadsheet.xls
40
40
  require 'rubygems'
41
41
  require 'simple-spreadsheet-extractor'
42
42
 
data/Rakefile CHANGED
@@ -16,7 +16,8 @@ begin
16
16
  gemspec.email = "stuart.owen@manchester.ac.uk"
17
17
  gemspec.homepage = "http://github.com/myGrid/simple-spreadsheet-extractor-gem"
18
18
  gemspec.authors = ["Stuart Owen","Finn Bacall"]
19
-
19
+
20
+ gemspec.has_rdoc = true
20
21
  gemspec.files.include %w(jars)
21
22
  gemspec.files.exclude "test/*"
22
23
  gemspec.extra_rdoc_files = ["README.rdoc", "LICENCE"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
File without changes
@@ -5,29 +5,29 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{simple-spreadsheet-extractor}
8
- s.version = "0.6.0"
8
+ s.version = "0.6.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{2011-06-09}
12
+ s.date = %q{2011-06-16}
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 = [
16
- "LICENCE",
17
16
  "README.rdoc"
18
17
  ]
19
18
  s.files = [
20
- "LICENCE",
19
+ "LICENSE",
21
20
  "README.rdoc",
22
21
  "Rakefile",
23
22
  "VERSION",
24
23
  "doc/schema-v1.xsd",
25
- "example.rb",
24
+ "examples/example.rb",
26
25
  "jars/lib/dom4j-1.6.1.jar",
27
26
  "jars/lib/poi-3.7.jar",
28
27
  "jars/lib/poi-ooxml-3.7.jar",
29
28
  "jars/lib/poi-ooxml-schemas-3.7.jar",
30
29
  "jars/lib/xmlbeans-2.3.0.jar",
30
+ "jars/simple-spreadsheet-extractor-0.6.0.jar",
31
31
  "lib/simple-spreadsheet-extractor.rb",
32
32
  "simple-spreadsheet-extractor.gemspec"
33
33
  ]
@@ -36,6 +36,7 @@ Gem::Specification.new do |s|
36
36
  s.rubygems_version = %q{1.4.2}
37
37
  s.summary = %q{Basic spreadsheet content extraction using Apache POI}
38
38
  s.test_files = [
39
+ "examples/example.rb",
39
40
  "test/test_extraction.rb"
40
41
  ]
41
42
 
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: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 0
10
- version: 0.6.0
9
+ - 1
10
+ version: 0.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stuart Owen
@@ -58,15 +58,14 @@ executables: []
58
58
  extensions: []
59
59
 
60
60
  extra_rdoc_files:
61
- - LICENCE
62
61
  - README.rdoc
63
62
  files:
64
- - LICENCE
63
+ - LICENSE
65
64
  - README.rdoc
66
65
  - Rakefile
67
66
  - VERSION
68
67
  - doc/schema-v1.xsd
69
- - example.rb
68
+ - examples/example.rb
70
69
  - jars/lib/dom4j-1.6.1.jar
71
70
  - jars/lib/poi-3.7.jar
72
71
  - jars/lib/poi-ooxml-3.7.jar
@@ -111,4 +110,5 @@ signing_key:
111
110
  specification_version: 3
112
111
  summary: Basic spreadsheet content extraction using Apache POI
113
112
  test_files:
113
+ - examples/example.rb
114
114
  - test/test_extraction.rb