spreadsheet 0.6.5.6 → 0.6.5.7

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,6 +1,12 @@
1
+ === 0.6.5.7 / 20.7.2011
2
+
3
+ * Fixed the bug introduced by Roel van der Hoorn and updated the test cases.
4
+
5
+ * https://github.com/vanderhoorn/spreadsheet/commit/c79ab14dcf40dee1d6d5ad2b174f3fe31414ca28
6
+
1
7
  === 0.6.5.6 / 20.7.2011
2
8
 
3
- * Added a fix from R. van der Hoorn to sanitize_worksheets if 'sheets' is empty.
9
+ * Added a fix from Roel van der Hoorn to sanitize_worksheets if 'sheets' is empty.
4
10
 
5
11
  * https://github.com/vanderhoorn/spreadsheet/commit/c109f2ac5486f9a38a6d93267daf560ab4b9473e
6
12
 
data/README.txt CHANGED
@@ -1,7 +1,11 @@
1
- Last Update: 14.02.2011 - Zeno R.R. Davatz
1
+ Last Update: 20.07.2011 - Zeno R.R. Davatz
2
2
 
3
3
  = Spreadsheet
4
4
 
5
+ http://spreadsheet.rubyforge.org
6
+
7
+ The Mailing List can be found here:
8
+
5
9
  http://groups.google.com/group/rubyspreadsheet
6
10
 
7
11
  The code can be found here:
data/lib/spreadsheet.rb CHANGED
@@ -42,7 +42,7 @@ module Spreadsheet
42
42
 
43
43
  ##
44
44
  # The version of Spreadsheet you are using.
45
- VERSION = '0.6.5.6'
45
+ VERSION = '0.6.5.7'
46
46
 
47
47
  ##
48
48
  # Default client Encoding. Change this value if your application uses a
@@ -96,7 +96,7 @@ class Workbook < Spreadsheet::Writer
96
96
  @number_formats[workbook][format] || 0
97
97
  end
98
98
  def sanitize_worksheets sheets
99
- return sheets if sheets.blank?
99
+ return sheets if sheets.empty?
100
100
  found_selected = false
101
101
  sheets.each do |sheet|
102
102
  found_selected ||= sheet.selected
data/spreadsheet.gemspec CHANGED
@@ -3,7 +3,7 @@ require "rake"
3
3
 
4
4
  spec = Gem::Specification.new do |s|
5
5
  s.name = "spreadsheet"
6
- s.version = "0.6.5.6"
6
+ s.version = "0.6.5.7"
7
7
  s.summary = "The Spreadsheet Library is designed to read and write Spreadsheet Documents"
8
8
  s.description = "As of version 0.6.0, only Microsoft Excel compatible spreadsheets are supported"
9
9
  s.author = "Masaomi Hatakeyama, Zeno R.R. Davatz"
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Excel::Writer::TestWorksheet -- Spreadheet -- 21.11.2007 -- hwyss@ywesee.com
2
+ # Excel::Writer::TestWorksheet -- Spreadsheet -- 20.07.2007 -- zdavatz@ywesee.com
3
3
 
4
4
  require 'test/unit'
5
5
  require 'spreadsheet/excel/writer/worksheet'
data/test/integration.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: utf-8
3
- # TestIntegration -- Spreadheet -- 08.10.2007 -- hwyss@ywesee.com
3
+ # TestIntegration -- Spreadsheet -- 08.10.2007 -- hwyss@ywesee.com
4
4
 
5
5
  $: << File.expand_path('../lib', File.dirname(__FILE__))
6
6
 
data/test/workbook.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # TestWorkbook -- Spreadheet -- 24.09.2008 -- hwyss@ywesee.com
2
+ # TestWorkbook -- Spreadsheet -- 24.09.2008 -- hwyss@ywesee.com
3
3
 
4
4
  $: << File.expand_path('../lib', File.dirname(__FILE__))
5
5
 
data/test/worksheet.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # TestWorksheet -- Spreadheet -- 30.09.2008 -- hwyss@ywesee.com
2
+ # TestWorksheet -- Spreadsheet -- 30.09.2008 -- hwyss@ywesee.com
3
3
 
4
4
  $: << File.expand_path('../lib', File.dirname(__FILE__))
5
5
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreadsheet
3
3
  version: !ruby/object:Gem::Version
4
- hash: 103
4
+ hash: 101
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
9
  - 5
10
- - 6
11
- version: 0.6.5.6
10
+ - 7
11
+ version: 0.6.5.7
12
12
  platform: ruby
13
13
  authors:
14
14
  - Masaomi Hatakeyama, Zeno R.R. Davatz
@@ -132,7 +132,7 @@ files:
132
132
  - test/worksheet.rb
133
133
  - .gemtest
134
134
  has_rdoc: true
135
- homepage: http://groups.google.com/group/rubyspreadsheet
135
+ homepage: http://spreadsheet.rubyforge.org
136
136
  licenses: []
137
137
 
138
138
  post_install_message: