roo 1.12.0 → 1.12.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/CHANGELOG +23 -14
- data/README.markdown +2 -5
- data/Rakefile +0 -1
- data/VERSION +1 -1
- data/lib/roo.rb +1 -1
- data/lib/roo/base.rb +30 -19
- data/lib/roo/excelx.rb +2 -2
- data/roo.gemspec +4 -3
- data/test/files/boolean.csv +2 -0
- data/test/files/bug-numbered-sheet-names.xlsx +0 -0
- data/test/test_roo.rb +28 -0
- metadata +6 -2
data/CHANGELOG
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
-
== 1.12.
|
1
|
+
== 1.12.1 2013-08-18
|
2
|
+
|
3
|
+
* 1 enhancement
|
4
|
+
* Support :boolean fields for CSV export via #cell_to_csv. #59
|
5
|
+
|
6
|
+
* 2 bugfixes
|
7
|
+
* Fix that Excelx would error on files with gaps in the numbering of their
|
8
|
+
internal sheet#.xml files. #58
|
9
|
+
* Fix that Base#info to preserve the original value of #default_sheet. #44
|
10
|
+
|
11
|
+
== 1.12.0 2013-08-18
|
2
12
|
|
3
13
|
* 3 deprecations
|
4
14
|
* Rename Openoffice -> OpenOffice, Libreoffice -> LibreOffice, Csv -> CSV, and redirect the old names to the new constants
|
@@ -6,13 +16,13 @@
|
|
6
16
|
* Roo's roo_rails_helper, aka the `spreadsheet` html-generating view method is currently deprecated with no replacement. If you find it helpful, tell http://github.com/Empact or extract it yourself.
|
7
17
|
|
8
18
|
* 9 enhancements
|
9
|
-
* Add Roo::Excelx#load_xml so that people can customize to their data, e.g.
|
19
|
+
* Add Roo::Excelx#load_xml so that people can customize to their data, e.g. #23
|
10
20
|
* Enable passing csv_options to Roo::CSV, which are passed through to the underlying CSV call.
|
11
21
|
* Enable passing options through from Roo::Spreadsheet to any Roo type.
|
12
|
-
* Enable passing an :extension option to Roo::Spreadsheet.new, which will override the extension detected on in the path
|
13
|
-
* Switch from google-spreadsheet-ruby to google_drive for Roo::Google access
|
22
|
+
* Enable passing an :extension option to Roo::Spreadsheet.new, which will override the extension detected on in the path #15
|
23
|
+
* Switch from google-spreadsheet-ruby to google_drive for Roo::Google access #40
|
14
24
|
* Make all the classes consistent in that #read_cells is only effective if the sheet has not been read.
|
15
|
-
* Roo::Google supports login via oauth :access_token.
|
25
|
+
* Roo::Google supports login via oauth :access_token. #61
|
16
26
|
* Roo::Excel now exposes its Spreadsheet workbook via #workbook
|
17
27
|
* Pull #load_xml down into Roo::Base, and use it in Excel2003XML and OpenOffice.
|
18
28
|
|
@@ -21,30 +31,29 @@
|
|
21
31
|
* Base#longest_sheet was moved to Excel, as it only worked under Excel
|
22
32
|
|
23
33
|
* 1 bugfix
|
24
|
-
* Fix that Roo::CSV#parse(headers: true) would blow up.
|
34
|
+
* Fix that Roo::CSV#parse(headers: true) would blow up. #37
|
25
35
|
|
26
36
|
== 1.11.2 2013-04-10
|
27
37
|
|
28
38
|
* 4 bugfixes
|
29
39
|
* Fix that Roo::Spreadsheet.open wasn't tolerant to case differences.
|
30
|
-
* Fix that Roo::Excel2003XML loading was broken
|
31
|
-
* Enable loading Roo::Csv files from uris, just as other file types
|
40
|
+
* Fix that Roo::Excel2003XML loading was broken #27
|
41
|
+
* Enable loading Roo::Csv files from uris, just as other file types #31
|
32
42
|
* Fix that Excelx "m/d/yy h:mm" was improperly being interpreted as date rather
|
33
|
-
than datetime
|
43
|
+
than datetime #29
|
34
44
|
|
35
45
|
== 1.11.1 2013-03-18
|
36
46
|
|
37
47
|
* 1 bugfix
|
38
48
|
* Exclude test/log/roo.log test log file from the gemspec in order to avoid a
|
39
|
-
rubygems warning:
|
49
|
+
rubygems warning: #26
|
40
50
|
|
41
51
|
== 1.11.0 2013-03-14
|
42
52
|
|
43
53
|
* 3 enhancements
|
44
|
-
* Support ruby 2.0.0 by replacing Iconv with String#encode
|
45
|
-
https://github.com/Empact/roo/pull/19
|
54
|
+
* Support ruby 2.0.0 by replacing Iconv with String#encode #19
|
46
55
|
* Excelx: Loosen the format detection rules such that more are
|
47
|
-
successfully detected
|
56
|
+
successfully detected #20
|
48
57
|
* Delete the roo binary, which was useless and not declared in the gemspec
|
49
58
|
|
50
59
|
* 1 change
|
@@ -53,7 +62,7 @@
|
|
53
62
|
== 1.10.3 2013-03-03
|
54
63
|
|
55
64
|
* 1 bugfix
|
56
|
-
* Support both nokogiri 1.5.5 and 1.5.6 (Karsten Richter)
|
65
|
+
* Support both nokogiri 1.5.5 and 1.5.6 (Karsten Richter) #18
|
57
66
|
|
58
67
|
* 1 enhancement
|
59
68
|
* Relax our nokogiri dependency back to 1.4.0, as we have no particular reason
|
data/README.markdown
CHANGED
@@ -26,6 +26,7 @@ While Roo is licensed under the MIT / Expat license, please note that the 'sprea
|
|
26
26
|
|
27
27
|
## Usage:
|
28
28
|
|
29
|
+
```ruby
|
29
30
|
require 'roo'
|
30
31
|
|
31
32
|
s = Roo::OpenOffice.new("myspreadsheet.ods") # loads an OpenOffice Spreadsheet
|
@@ -69,10 +70,6 @@ s.font(1,1).italic?
|
|
69
70
|
s.font(1,1).underline?
|
70
71
|
|
71
72
|
|
72
|
-
see http://roo.rubyforge.org for a more complete tutorial
|
73
|
-
|
74
|
-
# Fork Changelog / New Features
|
75
|
-
|
76
73
|
# Spreadsheet.open can accept both files and paths
|
77
74
|
|
78
75
|
xls = Roo::Spreadsheet.open('./new_prices.xls')
|
@@ -126,4 +123,4 @@ xls.parse(:clean => true)
|
|
126
123
|
# thousands and thousands of blank lines. i got fed up after watching my computer
|
127
124
|
# nearly catch fire for 4 hours for a spreadsheet with only 200 ACTUAL lines
|
128
125
|
# - located in lib/roo/worksheet.rb
|
129
|
-
|
126
|
+
```
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.12.
|
1
|
+
1.12.1
|
data/lib/roo.rb
CHANGED
data/lib/roo/base.rb
CHANGED
@@ -310,25 +310,27 @@ class Roo::Base
|
|
310
310
|
# returns information of the spreadsheet document and all sheets within
|
311
311
|
# this document.
|
312
312
|
def info
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
313
|
+
without_changing_default_sheet do
|
314
|
+
result = "File: #{File.basename(@filename)}\n"+
|
315
|
+
"Number of sheets: #{sheets.size}\n"+
|
316
|
+
"Sheets: #{sheets.join(', ')}\n"
|
317
|
+
n = 1
|
318
|
+
sheets.each {|sheet|
|
319
|
+
self.default_sheet = sheet
|
320
|
+
result << "Sheet " + n.to_s + ":\n"
|
321
|
+
unless first_row
|
322
|
+
result << " - empty -"
|
323
|
+
else
|
324
|
+
result << " First row: #{first_row}\n"
|
325
|
+
result << " Last row: #{last_row}\n"
|
326
|
+
result << " First column: #{Roo::Base.number_to_letter(first_column)}\n"
|
327
|
+
result << " Last column: #{Roo::Base.number_to_letter(last_column)}"
|
328
|
+
end
|
329
|
+
result << "\n" if sheet != sheets.last
|
330
|
+
n += 1
|
331
|
+
}
|
332
|
+
result
|
333
|
+
end
|
332
334
|
end
|
333
335
|
|
334
336
|
# returns an XML representation of all sheets of a spreadsheet file
|
@@ -539,6 +541,13 @@ class Roo::Base
|
|
539
541
|
|
540
542
|
private
|
541
543
|
|
544
|
+
def without_changing_default_sheet
|
545
|
+
original_default_sheet = default_sheet
|
546
|
+
yield
|
547
|
+
ensure
|
548
|
+
self.default_sheet = original_default_sheet
|
549
|
+
end
|
550
|
+
|
542
551
|
def reinitialize
|
543
552
|
initialize(@filename)
|
544
553
|
end
|
@@ -732,6 +741,8 @@ class Roo::Base
|
|
732
741
|
unless onecell.empty?
|
733
742
|
%{"#{onecell.gsub(/"/,'""')}"}
|
734
743
|
end
|
744
|
+
when :boolean
|
745
|
+
%{"#{onecell.gsub(/"/,'""').downcase}"}
|
735
746
|
when :float, :percentage
|
736
747
|
if onecell == onecell.to_i
|
737
748
|
onecell.to_i.to_s
|
data/lib/roo/excelx.rb
CHANGED
@@ -97,10 +97,10 @@ class Roo::Excelx < Roo::Base
|
|
97
97
|
@styles_doc = load_xml(File.join(tmpdir, 'roo_styles.xml'))
|
98
98
|
read_styles(@styles_doc)
|
99
99
|
end
|
100
|
-
@sheet_doc = @sheet_files.map do |item|
|
100
|
+
@sheet_doc = @sheet_files.compact.map do |item|
|
101
101
|
load_xml(item)
|
102
102
|
end
|
103
|
-
@comments_doc = @comments_files.map do |item|
|
103
|
+
@comments_doc = @comments_files.compact.map do |item|
|
104
104
|
load_xml(item)
|
105
105
|
end
|
106
106
|
end
|
data/roo.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "roo"
|
8
|
-
s.version = "1.12.
|
8
|
+
s.version = "1.12.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Thomas Preymesser", "Hugh McGowan", "Ben Woosley"]
|
@@ -72,6 +72,7 @@ Gem::Specification.new do |s|
|
|
72
72
|
"test/files/bbu.xml",
|
73
73
|
"test/files/bode-v1.ods.zip",
|
74
74
|
"test/files/bode-v1.xls.zip",
|
75
|
+
"test/files/boolean.csv",
|
75
76
|
"test/files/boolean.ods",
|
76
77
|
"test/files/boolean.xls",
|
77
78
|
"test/files/boolean.xlsx",
|
@@ -80,6 +81,7 @@ Gem::Specification.new do |s|
|
|
80
81
|
"test/files/borders.xls",
|
81
82
|
"test/files/borders.xlsx",
|
82
83
|
"test/files/borders.xml",
|
84
|
+
"test/files/bug-numbered-sheet-names.xlsx",
|
83
85
|
"test/files/bug-row-column-fixnum-float.xls",
|
84
86
|
"test/files/bug-row-column-fixnum-float.xml",
|
85
87
|
"test/files/comments.ods",
|
@@ -171,10 +173,9 @@ Gem::Specification.new do |s|
|
|
171
173
|
s.licenses = ["MIT"]
|
172
174
|
s.require_paths = ["lib"]
|
173
175
|
s.required_ruby_version = Gem::Requirement.new(">= 1.9.0")
|
174
|
-
s.rubyforge_project = "roo"
|
175
176
|
s.rubygems_version = "1.8.24"
|
176
177
|
s.summary = "Roo can access the contents of various spreadsheet files."
|
177
|
-
s.test_files = ["spec/fixtures/vcr_cassettes/google_drive.yml", "spec/fixtures/vcr_cassettes/google_drive_access_token.yml", "spec/lib/roo/base_spec.rb", "spec/lib/roo/csv_spec.rb", "spec/lib/roo/excel2003xml_spec.rb", "spec/lib/roo/excel_spec.rb", "spec/lib/roo/excelx/format_spec.rb", "spec/lib/roo/excelx_spec.rb", "spec/lib/roo/google_spec.rb", "spec/lib/roo/libreoffice_spec.rb", "spec/lib/roo/openoffice_spec.rb", "spec/lib/roo/spreadsheet_spec.rb", "spec/spec_helper.rb", "test/all_ss.rb", "test/files/1900_base.xls", "test/files/1900_base.xlsx", "test/files/1904_base.xls", "test/files/1904_base.xlsx", "test/files/bad_excel_date.xls", "test/files/bbu.ods", "test/files/bbu.xls", "test/files/bbu.xlsx", "test/files/bbu.xml", "test/files/Bibelbund.csv", "test/files/Bibelbund.ods", "test/files/Bibelbund.xls", "test/files/Bibelbund.xlsx", "test/files/Bibelbund.xml", "test/files/Bibelbund1.ods", "test/files/bode-v1.ods.zip", "test/files/bode-v1.xls.zip", "test/files/boolean.ods", "test/files/boolean.xls", "test/files/boolean.xlsx", "test/files/boolean.xml", "test/files/borders.ods", "test/files/borders.xls", "test/files/borders.xlsx", "test/files/borders.xml", "test/files/bug-row-column-fixnum-float.xls", "test/files/bug-row-column-fixnum-float.xml", "test/files/comments.ods", "test/files/comments.xls", "test/files/comments.xlsx", "test/files/csvtypes.csv", "test/files/datetime.ods", "test/files/datetime.xls", "test/files/datetime.xlsx", "test/files/datetime.xml", "test/files/datetime_floatconv.xls", "test/files/datetime_floatconv.xml", "test/files/dreimalvier.ods", "test/files/emptysheets.ods", "test/files/emptysheets.xls", "test/files/emptysheets.xlsx", "test/files/emptysheets.xml", "test/files/excel2003.xml", "test/files/false_encoding.xls", "test/files/false_encoding.xml", "test/files/formula.ods", "test/files/formula.xls", "test/files/formula.xlsx", "test/files/formula.xml", "test/files/formula_parse_error.xls", "test/files/formula_parse_error.xml", "test/files/formula_string_error.xlsx", "test/files/html-escape.ods", "test/files/matrix.ods", "test/files/matrix.xls", "test/files/named_cells.ods", "test/files/named_cells.xls", "test/files/named_cells.xlsx", "test/files/no_spreadsheet_file.txt", "test/files/numbers1.csv", "test/files/numbers1.ods", "test/files/numbers1.xls", "test/files/numbers1.xlsx", "test/files/numbers1.xml", "test/files/only_one_sheet.ods", "test/files/only_one_sheet.xls", "test/files/only_one_sheet.xlsx", "test/files/only_one_sheet.xml", "test/files/paragraph.ods", "test/files/paragraph.xls", "test/files/paragraph.xlsx", "test/files/paragraph.xml", "test/files/Pfand_from_windows_phone.xlsx", "test/files/prova.xls", "test/files/ric.ods", "test/files/simple_spreadsheet.ods", "test/files/simple_spreadsheet.xls", "test/files/simple_spreadsheet.xlsx", "test/files/simple_spreadsheet.xml", "test/files/simple_spreadsheet_from_italo.ods", "test/files/simple_spreadsheet_from_italo.xls", "test/files/simple_spreadsheet_from_italo.xml", "test/files/so_datetime.csv", "test/files/style.ods", "test/files/style.xls", "test/files/style.xlsx", "test/files/style.xml", "test/files/time-test.csv", "test/files/time-test.ods", "test/files/time-test.xls", "test/files/time-test.xlsx", "test/files/time-test.xml", "test/files/type_excel.ods", "test/files/type_excel.xlsx", "test/files/type_excelx.ods", "test/files/type_excelx.xls", "test/files/type_openoffice.xls", "test/files/type_openoffice.xlsx", "test/files/whitespace.ods", "test/files/whitespace.xls", "test/files/whitespace.xlsx", "test/files/whitespace.xml", "test/rm_sub_test.rb", "test/rm_test.rb", "test/test_generic_spreadsheet.rb", "test/test_helper.rb", "test/test_roo.rb"]
|
178
|
+
s.test_files = ["spec/fixtures/vcr_cassettes/google_drive.yml", "spec/fixtures/vcr_cassettes/google_drive_access_token.yml", "spec/lib/roo/base_spec.rb", "spec/lib/roo/csv_spec.rb", "spec/lib/roo/excel2003xml_spec.rb", "spec/lib/roo/excel_spec.rb", "spec/lib/roo/excelx/format_spec.rb", "spec/lib/roo/excelx_spec.rb", "spec/lib/roo/google_spec.rb", "spec/lib/roo/libreoffice_spec.rb", "spec/lib/roo/openoffice_spec.rb", "spec/lib/roo/spreadsheet_spec.rb", "spec/spec_helper.rb", "test/all_ss.rb", "test/files/1900_base.xls", "test/files/1900_base.xlsx", "test/files/1904_base.xls", "test/files/1904_base.xlsx", "test/files/bad_excel_date.xls", "test/files/bbu.ods", "test/files/bbu.xls", "test/files/bbu.xlsx", "test/files/bbu.xml", "test/files/Bibelbund.csv", "test/files/Bibelbund.ods", "test/files/Bibelbund.xls", "test/files/Bibelbund.xlsx", "test/files/Bibelbund.xml", "test/files/Bibelbund1.ods", "test/files/bode-v1.ods.zip", "test/files/bode-v1.xls.zip", "test/files/boolean.csv", "test/files/boolean.ods", "test/files/boolean.xls", "test/files/boolean.xlsx", "test/files/boolean.xml", "test/files/borders.ods", "test/files/borders.xls", "test/files/borders.xlsx", "test/files/borders.xml", "test/files/bug-numbered-sheet-names.xlsx", "test/files/bug-row-column-fixnum-float.xls", "test/files/bug-row-column-fixnum-float.xml", "test/files/comments.ods", "test/files/comments.xls", "test/files/comments.xlsx", "test/files/csvtypes.csv", "test/files/datetime.ods", "test/files/datetime.xls", "test/files/datetime.xlsx", "test/files/datetime.xml", "test/files/datetime_floatconv.xls", "test/files/datetime_floatconv.xml", "test/files/dreimalvier.ods", "test/files/emptysheets.ods", "test/files/emptysheets.xls", "test/files/emptysheets.xlsx", "test/files/emptysheets.xml", "test/files/excel2003.xml", "test/files/false_encoding.xls", "test/files/false_encoding.xml", "test/files/formula.ods", "test/files/formula.xls", "test/files/formula.xlsx", "test/files/formula.xml", "test/files/formula_parse_error.xls", "test/files/formula_parse_error.xml", "test/files/formula_string_error.xlsx", "test/files/html-escape.ods", "test/files/matrix.ods", "test/files/matrix.xls", "test/files/named_cells.ods", "test/files/named_cells.xls", "test/files/named_cells.xlsx", "test/files/no_spreadsheet_file.txt", "test/files/numbers1.csv", "test/files/numbers1.ods", "test/files/numbers1.xls", "test/files/numbers1.xlsx", "test/files/numbers1.xml", "test/files/only_one_sheet.ods", "test/files/only_one_sheet.xls", "test/files/only_one_sheet.xlsx", "test/files/only_one_sheet.xml", "test/files/paragraph.ods", "test/files/paragraph.xls", "test/files/paragraph.xlsx", "test/files/paragraph.xml", "test/files/Pfand_from_windows_phone.xlsx", "test/files/prova.xls", "test/files/ric.ods", "test/files/simple_spreadsheet.ods", "test/files/simple_spreadsheet.xls", "test/files/simple_spreadsheet.xlsx", "test/files/simple_spreadsheet.xml", "test/files/simple_spreadsheet_from_italo.ods", "test/files/simple_spreadsheet_from_italo.xls", "test/files/simple_spreadsheet_from_italo.xml", "test/files/so_datetime.csv", "test/files/style.ods", "test/files/style.xls", "test/files/style.xlsx", "test/files/style.xml", "test/files/time-test.csv", "test/files/time-test.ods", "test/files/time-test.xls", "test/files/time-test.xlsx", "test/files/time-test.xml", "test/files/type_excel.ods", "test/files/type_excel.xlsx", "test/files/type_excelx.ods", "test/files/type_excelx.xls", "test/files/type_openoffice.xls", "test/files/type_openoffice.xlsx", "test/files/whitespace.ods", "test/files/whitespace.xls", "test/files/whitespace.xlsx", "test/files/whitespace.xml", "test/rm_sub_test.rb", "test/rm_test.rb", "test/test_generic_spreadsheet.rb", "test/test_helper.rb", "test/test_roo.rb"]
|
178
179
|
|
179
180
|
if s.respond_to? :specification_version then
|
180
181
|
s.specification_version = 3
|
Binary file
|
data/test/test_roo.rb
CHANGED
@@ -943,6 +943,14 @@ class TestRoo < Test::Unit::TestCase
|
|
943
943
|
end
|
944
944
|
end
|
945
945
|
|
946
|
+
def test_info_doesnt_set_default_sheet
|
947
|
+
with_each_spreadsheet(:name=>'numbers1') do |oo|
|
948
|
+
oo.default_sheet = 'Sheet3'
|
949
|
+
oo.info
|
950
|
+
assert_equal 'Sheet3', oo.default_sheet
|
951
|
+
end
|
952
|
+
end
|
953
|
+
|
946
954
|
def test_bug_excel_numbers1_sheet5_last_row
|
947
955
|
with_each_spreadsheet(:name=>'numbers1', :format=>:excel) do |oo|
|
948
956
|
oo.default_sheet = "Tabelle1"
|
@@ -1093,6 +1101,19 @@ Sheet 3:
|
|
1093
1101
|
end
|
1094
1102
|
end
|
1095
1103
|
|
1104
|
+
def test_boolean_to_csv
|
1105
|
+
with_each_spreadsheet(:name=>'boolean') do |oo|
|
1106
|
+
Dir.mktmpdir do |tempdir|
|
1107
|
+
csv_output = File.join(tempdir,'boolean.csv')
|
1108
|
+
assert oo.to_csv(csv_output)
|
1109
|
+
assert File.exists?(csv_output)
|
1110
|
+
assert_equal "", `diff --strip-trailing-cr #{TESTDIR}/boolean.csv #{csv_output}`
|
1111
|
+
# --strip-trailing-cr is needed because the test-file use 0A and
|
1112
|
+
# the test on an windows box generates 0D 0A as line endings
|
1113
|
+
end
|
1114
|
+
end
|
1115
|
+
end
|
1116
|
+
|
1096
1117
|
def test_date_time_yaml
|
1097
1118
|
with_each_spreadsheet(:name=>'time-test') do |oo|
|
1098
1119
|
expected =
|
@@ -2236,4 +2257,11 @@ where the expected result is
|
|
2236
2257
|
parsed = oo.parse(:headers => true)
|
2237
2258
|
assert_equal headers, parsed[1].keys
|
2238
2259
|
end
|
2260
|
+
|
2261
|
+
def test_bug_numbered_sheet_names
|
2262
|
+
with_each_spreadsheet(:name=>'bug-numbered-sheet-names', :format=>:excelx) do |oo|
|
2263
|
+
assert_nothing_raised() { oo.each_with_pagename { } }
|
2264
|
+
end
|
2265
|
+
end
|
2266
|
+
|
2239
2267
|
end # class
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: roo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.12.
|
4
|
+
version: 1.12.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -168,6 +168,7 @@ files:
|
|
168
168
|
- test/files/bbu.xml
|
169
169
|
- test/files/bode-v1.ods.zip
|
170
170
|
- test/files/bode-v1.xls.zip
|
171
|
+
- test/files/boolean.csv
|
171
172
|
- test/files/boolean.ods
|
172
173
|
- test/files/boolean.xls
|
173
174
|
- test/files/boolean.xlsx
|
@@ -176,6 +177,7 @@ files:
|
|
176
177
|
- test/files/borders.xls
|
177
178
|
- test/files/borders.xlsx
|
178
179
|
- test/files/borders.xml
|
180
|
+
- test/files/bug-numbered-sheet-names.xlsx
|
179
181
|
- test/files/bug-row-column-fixnum-float.xls
|
180
182
|
- test/files/bug-row-column-fixnum-float.xml
|
181
183
|
- test/files/comments.ods
|
@@ -282,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
282
284
|
- !ruby/object:Gem::Version
|
283
285
|
version: '0'
|
284
286
|
requirements: []
|
285
|
-
rubyforge_project:
|
287
|
+
rubyforge_project:
|
286
288
|
rubygems_version: 1.8.24
|
287
289
|
signing_key:
|
288
290
|
specification_version: 3
|
@@ -319,6 +321,7 @@ test_files:
|
|
319
321
|
- test/files/Bibelbund1.ods
|
320
322
|
- test/files/bode-v1.ods.zip
|
321
323
|
- test/files/bode-v1.xls.zip
|
324
|
+
- test/files/boolean.csv
|
322
325
|
- test/files/boolean.ods
|
323
326
|
- test/files/boolean.xls
|
324
327
|
- test/files/boolean.xlsx
|
@@ -327,6 +330,7 @@ test_files:
|
|
327
330
|
- test/files/borders.xls
|
328
331
|
- test/files/borders.xlsx
|
329
332
|
- test/files/borders.xml
|
333
|
+
- test/files/bug-numbered-sheet-names.xlsx
|
330
334
|
- test/files/bug-row-column-fixnum-float.xls
|
331
335
|
- test/files/bug-row-column-fixnum-float.xml
|
332
336
|
- test/files/comments.ods
|