rods 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Manifest +0 -1
  2. data/README +2 -0
  3. data/Rakefile +2 -2
  4. data/lib/rods.rb +1 -1
  5. data/rods.gemspec +3 -3
  6. metadata +5 -5
data/Manifest CHANGED
@@ -3,4 +3,3 @@ README
3
3
  Rakefile
4
4
  lib/example.rb
5
5
  lib/rods.rb
6
- rods.gemspec
data/README CHANGED
@@ -14,6 +14,8 @@
14
14
  Licensed under the same terms as Ruby. No warranty is provided.
15
15
 
16
16
  = Changelog
17
+ * 0.1.1
18
+ * Bug-Fix: readCellFromRow() did not return value in some cases
17
19
  * 0.1.0
18
20
  * improved support for compound-formulas
19
21
  (=SUMME(WENN((A$12:A$985="x")*(I$12:I$983="Hauskonto");G$12:G$983)))
data/Rakefile CHANGED
@@ -2,8 +2,8 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rods', '0.1.0') do |p|
6
- p.description = "OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation unter http://ruby.homelinux.com/ruby/rods/. You can contact me under rodsdotrubyatonlinedotde."
5
+ Echoe.new('rods', '0.1.1') do |p|
6
+ p.description = "OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation at http://ruby.homelinux.com/ruby/rods/. You can contact me at rodsdotrubyatonlinedotde."
7
7
  p.summary = "Automation of OpenOffice/LibreOffice by batch-processing of spreadsheets conforming to Open Document v1.1"
8
8
  p.url = "http://ruby.homelinux.com/ruby/rods/"
9
9
  p.author = "Dr. Heinz Breinlinger"
@@ -951,8 +951,8 @@ class Rods
951
951
  # the currency-symbol
952
952
  #----------------------------------------------------------
953
953
  def normalizeText(text,type)
954
+ newText=String.new(text)
954
955
  if((type == "currency") || (type == "float"))
955
- newText=String.new(text)
956
956
  #--------------------------------------
957
957
  # Tausendertrennzeichen beseitigen
958
958
  #--------------------------------------
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rods}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Dr. Heinz Breinlinger"]
9
- s.date = %q{2011-01-06}
10
- s.description = %q{OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation unter http://ruby.homelinux.com/ruby/rods/. You can contact me under rodsdotrubyatonlinedotde.}
9
+ s.date = %q{2011-01-07}
10
+ s.description = %q{OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation at http://ruby.homelinux.com/ruby/rods/. You can contact me at rodsdotrubyatonlinedotde.}
11
11
  s.email = %q{rods.ruby@online.de}
12
12
  s.extra_rdoc_files = ["README", "lib/example.rb", "lib/rods.rb"]
13
13
  s.files = ["Manifest", "README", "Rakefile", "lib/example.rb", "lib/rods.rb", "rods.gemspec"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rods
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dr. Heinz Breinlinger
@@ -15,11 +15,11 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-06 00:00:00 +01:00
18
+ date: 2011-01-07 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
22
- description: "OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation unter http://ruby.homelinux.com/ruby/rods/. You can contact me under rodsdotrubyatonlinedotde."
22
+ description: "OpenOffice.org oocalc: Automated batch-processing of spreadsheets (*.ods) conforming to Open Document Format v1.1. used by e.g. OpenOffice.org and LibreOffice. Please see screenshot and Rdoc-Documentation at http://ruby.homelinux.com/ruby/rods/. You can contact me at rodsdotrubyatonlinedotde."
23
23
  email: rods.ruby@online.de
24
24
  executables: []
25
25