write_xlsx 0.65.1 → 0.69.0
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.
- checksums.yaml +4 -4
- data/README.rdoc +7 -0
- data/lib/write_xlsx/chart.rb +20 -2
- data/lib/write_xlsx/drawing.rb +4 -7
- data/lib/write_xlsx/package/comments.rb +13 -10
- data/lib/write_xlsx/package/conditional_format.rb +1 -1
- data/lib/write_xlsx/package/table.rb +4 -18
- data/lib/write_xlsx/package/vml.rb +2 -2
- data/lib/write_xlsx/sheets.rb +10 -4
- data/lib/write_xlsx/utility.rb +7 -10
- data/lib/write_xlsx/version.rb +1 -1
- data/lib/write_xlsx/workbook.rb +73 -88
- data/lib/write_xlsx/worksheet.rb +39 -85
- data/lib/write_xlsx/worksheet/hyperlink.rb +2 -1
- data/test/drawing/test_write_c_chart.rb +1 -1
- data/test/package/table/test_table13.rb +69 -0
- data/test/regression/test_button08.rb +28 -0
- data/test/regression/test_chart_axis25.rb +45 -0
- data/test/regression/test_chart_axis26.rb +45 -0
- data/test/regression/test_chart_axis27.rb +45 -0
- data/test/regression/test_chart_axis28.rb +45 -0
- data/test/regression/test_chart_axis29.rb +44 -0
- data/test/regression/test_chart_scatter08.rb +57 -0
- data/test/regression/test_comment11.rb +33 -0
- data/test/regression/test_selection01.rb +23 -0
- data/test/regression/test_selection02.rb +33 -0
- data/test/regression/test_shape01.rb +25 -0
- data/test/regression/test_shape02.rb +42 -0
- data/test/regression/test_shape03.rb +45 -0
- data/test/regression/test_shape04.rb +43 -0
- data/test/regression/test_table15.rb +37 -0
- data/test/regression/test_utf8_01.rb +23 -0
- data/test/regression/test_utf8_03.rb +23 -0
- data/test/regression/test_utf8_04.rb +23 -0
- data/test/regression/test_utf8_05.rb +26 -0
- data/test/regression/test_utf8_06.rb +28 -0
- data/test/regression/test_utf8_07.rb +27 -0
- data/test/regression/test_utf8_08.rb +38 -0
- data/test/regression/test_utf8_09.rb +24 -0
- data/test/regression/test_utf8_10.rb +42 -0
- data/test/regression/xlsx_files/button08.xlsx +0 -0
- data/test/regression/xlsx_files/button09.xlsx +0 -0
- data/test/regression/xlsx_files/button10.xlsx +0 -0
- data/test/regression/xlsx_files/button11.xlsx +0 -0
- data/test/regression/xlsx_files/button12.xlsx +0 -0
- data/test/regression/xlsx_files/chart_axis25.xlsx +0 -0
- data/test/regression/xlsx_files/chart_axis26.xlsx +0 -0
- data/test/regression/xlsx_files/chart_axis27.xlsx +0 -0
- data/test/regression/xlsx_files/chart_axis28.xlsx +0 -0
- data/test/regression/xlsx_files/chart_axis29.xlsx +0 -0
- data/test/regression/xlsx_files/chart_scatter08.xlsx +0 -0
- data/test/regression/xlsx_files/comment11.xlsx +0 -0
- data/test/regression/xlsx_files/selection01.xlsx +0 -0
- data/test/regression/xlsx_files/selection02.xlsx +0 -0
- data/test/regression/xlsx_files/shape01.xlsx +0 -0
- data/test/regression/xlsx_files/shape02.xlsx +0 -0
- data/test/regression/xlsx_files/shape03.xlsx +0 -0
- data/test/regression/xlsx_files/shape04.xlsx +0 -0
- data/test/regression/xlsx_files/table15.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_01.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_03.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_04.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_05.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_06.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_07.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_08.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_09.xlsx +0 -0
- data/test/regression/xlsx_files/utf8_10.xlsx +0 -0
- data/test/workbook/test_define_name.rb +16 -0
- data/test/worksheet/test_cond_format_18.rb +1 -1
- data/test/worksheet/test_convert_date_time_04.rb +19 -0
- data/test/worksheet/test_write_row_element.rb +14 -14
- metadata +113 -3
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_03 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_03
|
|
14
|
+
@xlsx = 'utf8_03.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet('Café')
|
|
17
|
+
|
|
18
|
+
worksheet.write('A1', 'Café')
|
|
19
|
+
|
|
20
|
+
workbook.close
|
|
21
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_04 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_04
|
|
14
|
+
@xlsx = 'utf8_04.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet('Café & Café')
|
|
17
|
+
|
|
18
|
+
worksheet.write('A1', 'Café & Café')
|
|
19
|
+
|
|
20
|
+
workbook.close
|
|
21
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_05 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_05
|
|
14
|
+
@xlsx = 'utf8_05.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
|
|
18
|
+
worksheet.write('A1', '="Café"', nil, 'Café')
|
|
19
|
+
|
|
20
|
+
workbook.close
|
|
21
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx,
|
|
22
|
+
[ 'xl/calcChain.xml', '[Content_Types].xml', 'xl/_rels/workbook.xml.rels' ],
|
|
23
|
+
{'xl/workbook.xml' => ['<workbookView']}
|
|
24
|
+
)
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_06 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_06
|
|
14
|
+
@xlsx = 'utf8_06.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
|
|
18
|
+
bold = workbook.add_format(:bold => 1)
|
|
19
|
+
italic = workbook.add_format(:italic => 1)
|
|
20
|
+
|
|
21
|
+
worksheet.write('A1', 'Foo', bold)
|
|
22
|
+
worksheet.write('A2', 'Bar', italic)
|
|
23
|
+
worksheet.write_rich_string('A3', 'Caf', bold, 'é')
|
|
24
|
+
|
|
25
|
+
workbook.close
|
|
26
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_07 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_07
|
|
14
|
+
@xlsx = 'utf8_07.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
|
|
18
|
+
worksheet.write('A1', 'Foo')
|
|
19
|
+
worksheet.write_comment('A1', 'Café')
|
|
20
|
+
|
|
21
|
+
# Set the author to match the target XLSX file.
|
|
22
|
+
worksheet.comments_author = 'John'
|
|
23
|
+
|
|
24
|
+
workbook.close
|
|
25
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_08 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_08
|
|
14
|
+
@xlsx = 'utf8_08.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
|
|
18
|
+
worksheet.write('A1', 'Foo')
|
|
19
|
+
|
|
20
|
+
worksheet.set_header('&LCafé')
|
|
21
|
+
worksheet.set_footer('&Rclé')
|
|
22
|
+
|
|
23
|
+
worksheet.paper = 9
|
|
24
|
+
|
|
25
|
+
workbook.close
|
|
26
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx,
|
|
27
|
+
[
|
|
28
|
+
'xl/printerSettings/printerSettings1.bin',
|
|
29
|
+
'xl/worksheets/_rels/sheet1.xml.rels'
|
|
30
|
+
],
|
|
31
|
+
{
|
|
32
|
+
'[Content_Types].xml' => ['<Default Extension="bin"'],
|
|
33
|
+
'xl/workbook.xml' => ['<workbookView'],
|
|
34
|
+
# 'xl/worksheets/sheet1.xml' => ['<pageMargins', '<pageSetup'],
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_09 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_09
|
|
14
|
+
@xlsx = 'utf8_09.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
num_format = workbook.add_format(:num_format => '[$¥-411]#,##0.00')
|
|
18
|
+
|
|
19
|
+
worksheet.write('A1', 1, num_format)
|
|
20
|
+
|
|
21
|
+
workbook.close
|
|
22
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
|
|
4
|
+
class TestRegressionUtf8_10 < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
setup_dir_var
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def teardown
|
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_utf8_10
|
|
14
|
+
@xlsx = 'utf8_10.xlsx'
|
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
|
16
|
+
worksheet = workbook.add_worksheet
|
|
17
|
+
chart = workbook.add_chart(:type => 'bar', :embedded => 1)
|
|
18
|
+
|
|
19
|
+
chart.instance_variable_set('@axis_ids', [86604416, 89227648])
|
|
20
|
+
|
|
21
|
+
data = [
|
|
22
|
+
[ 1, 2, 3, 4, 5 ],
|
|
23
|
+
[ 2, 4, 6, 8, 10 ],
|
|
24
|
+
[ 3, 6, 9, 12, 15 ]
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
worksheet.write( 'A1', data )
|
|
28
|
+
|
|
29
|
+
chart.add_series(:values => '=Sheet1!$A$1:$A$5')
|
|
30
|
+
chart.add_series(:values => '=Sheet1!$B$1:$B$5')
|
|
31
|
+
chart.add_series(:values => '=Sheet1!$C$1:$C$5')
|
|
32
|
+
|
|
33
|
+
chart.set_x_axis(:name => 'café')
|
|
34
|
+
chart.set_y_axis(:name => 'sauté')
|
|
35
|
+
chart.set_title(:name => 'résumé')
|
|
36
|
+
|
|
37
|
+
worksheet.insert_chart('E9', chart)
|
|
38
|
+
|
|
39
|
+
workbook.close
|
|
40
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
|
41
|
+
end
|
|
42
|
+
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
require 'write_xlsx'
|
|
4
|
+
require 'stringio'
|
|
5
|
+
|
|
6
|
+
class TestDefinedName < Test::Unit::TestCase
|
|
7
|
+
def setup
|
|
8
|
+
@workbook = WriteXLSX.new(StringIO.new)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def test_define_name_should_not_change_formula_string
|
|
12
|
+
formula = '=0.98'
|
|
13
|
+
@workbook.define_name('Name', formula)
|
|
14
|
+
assert_equal('=0.98', formula)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -32,7 +32,7 @@ def test_conditional_formats
|
|
|
32
32
|
@worksheet.write('A11', 11)
|
|
33
33
|
@worksheet.write('A12', 12)
|
|
34
34
|
|
|
35
|
-
@worksheet.conditional_formatting('
|
|
35
|
+
@worksheet.conditional_formatting('=$A$3:$A$4,A1 , A6:$A$8 ,$A10 , A$12',
|
|
36
36
|
{
|
|
37
37
|
:type => '3_color_scale'
|
|
38
38
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
require 'helper'
|
|
3
|
+
require 'write_xlsx/workbook'
|
|
4
|
+
require 'write_xlsx/worksheet'
|
|
5
|
+
require 'stringio'
|
|
6
|
+
|
|
7
|
+
class TestConvertDateTime04 < Test::Unit::TestCase
|
|
8
|
+
def setup
|
|
9
|
+
@workbook = WriteXLSX.new(StringIO.new)
|
|
10
|
+
@worksheet = @workbook.add_worksheet('')
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def test_convert_date_time_should_not_change_date_time_string
|
|
14
|
+
date_time = ' 2000-01-23T00:00:00.000Z '
|
|
15
|
+
@worksheet.convert_date_time(date_time)
|
|
16
|
+
|
|
17
|
+
assert_equal(' 2000-01-23T00:00:00.000Z ', date_time)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -11,52 +11,52 @@ def setup
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def test_write_row_0
|
|
14
|
-
@worksheet.__send__('write_row_element', 0)
|
|
14
|
+
@worksheet.__send__('write_row_element', 0){}
|
|
15
15
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
16
|
-
expected = '<row r="1">'
|
|
16
|
+
expected = '<row r="1"></row>'
|
|
17
17
|
assert_equal(expected, result)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
def test_write_row_2_22
|
|
21
|
-
@worksheet.__send__('write_row_element', 2, '2:2')
|
|
21
|
+
@worksheet.__send__('write_row_element', 2, '2:2'){}
|
|
22
22
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
23
|
-
expected = '<row r="3" spans="2:2">'
|
|
23
|
+
expected = '<row r="3" spans="2:2"></row>'
|
|
24
24
|
assert_equal(expected, result)
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def test_write_row_1_nil_30
|
|
28
|
-
@worksheet.__send__('write_row_element', 1, nil, 30)
|
|
28
|
+
@worksheet.__send__('write_row_element', 1, nil, 30){}
|
|
29
29
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
30
|
-
expected = '<row r="2" ht="30" customHeight="1">'
|
|
30
|
+
expected = '<row r="2" ht="30" customHeight="1"></row>'
|
|
31
31
|
assert_equal(expected, result)
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
def test_write_row_3_nil_nil_nil_1
|
|
35
|
-
@worksheet.__send__('write_row_element', 3, nil, nil, nil, 1)
|
|
35
|
+
@worksheet.__send__('write_row_element', 3, nil, nil, nil, 1){}
|
|
36
36
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
37
|
-
expected = '<row r="4" hidden="1">'
|
|
37
|
+
expected = '<row r="4" hidden="1"></row>'
|
|
38
38
|
assert_equal(expected, result)
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
def test_write_row_6_nil_nil_format
|
|
42
42
|
format = Writexlsx::Format.new(Writexlsx::Formats.new, :xf_index => 1)
|
|
43
|
-
@worksheet.__send__('write_row_element', 6, nil, nil, format)
|
|
43
|
+
@worksheet.__send__('write_row_element', 6, nil, nil, format){}
|
|
44
44
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
45
|
-
expected = '<row r="7" s="1" customFormat="1">'
|
|
45
|
+
expected = '<row r="7" s="1" customFormat="1"></row>'
|
|
46
46
|
assert_equal(expected, result)
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
def test_write_row_9_nil_3
|
|
50
|
-
@worksheet.__send__('write_row_element', 9, nil, 3)
|
|
50
|
+
@worksheet.__send__('write_row_element', 9, nil, 3) {}
|
|
51
51
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
52
|
-
expected = '<row r="10" ht="3" customHeight="1">'
|
|
52
|
+
expected = '<row r="10" ht="3" customHeight="1"></row>'
|
|
53
53
|
assert_equal(expected, result)
|
|
54
54
|
end
|
|
55
55
|
|
|
56
56
|
def test_write_row_12_nil_24_nil_1
|
|
57
|
-
@worksheet.__send__('write_row_element', 12, nil, 24, nil, 1)
|
|
57
|
+
@worksheet.__send__('write_row_element', 12, nil, 24, nil, 1){}
|
|
58
58
|
result = @worksheet.instance_variable_get(:@writer).string
|
|
59
|
-
expected = '<row r="13" ht="24" hidden="1" customHeight="1">'
|
|
59
|
+
expected = '<row r="13" ht="24" hidden="1" customHeight="1"></row>'
|
|
60
60
|
assert_equal(expected, result)
|
|
61
61
|
end
|
|
62
62
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: write_xlsx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.69.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hideo NAKAMURA
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -269,6 +269,7 @@ files:
|
|
|
269
269
|
- test/package/table/test_table10.rb
|
|
270
270
|
- test/package/table/test_table11.rb
|
|
271
271
|
- test/package/table/test_table12.rb
|
|
272
|
+
- test/package/table/test_table13.rb
|
|
272
273
|
- test/package/table/test_write_auto_filter.rb
|
|
273
274
|
- test/package/table/test_write_table_column.rb
|
|
274
275
|
- test/package/table/test_write_table_style_info.rb
|
|
@@ -369,6 +370,7 @@ files:
|
|
|
369
370
|
- test/regression/test_button05.rb
|
|
370
371
|
- test/regression/test_button06.rb
|
|
371
372
|
- test/regression/test_button07.rb
|
|
373
|
+
- test/regression/test_button08.rb
|
|
372
374
|
- test/regression/test_chart_area01.rb
|
|
373
375
|
- test/regression/test_chart_area02.rb
|
|
374
376
|
- test/regression/test_chart_area03.rb
|
|
@@ -396,6 +398,11 @@ files:
|
|
|
396
398
|
- test/regression/test_chart_axis22.rb
|
|
397
399
|
- test/regression/test_chart_axis23.rb
|
|
398
400
|
- test/regression/test_chart_axis24.rb
|
|
401
|
+
- test/regression/test_chart_axis25.rb
|
|
402
|
+
- test/regression/test_chart_axis26.rb
|
|
403
|
+
- test/regression/test_chart_axis27.rb
|
|
404
|
+
- test/regression/test_chart_axis28.rb
|
|
405
|
+
- test/regression/test_chart_axis29.rb
|
|
399
406
|
- test/regression/test_chart_bar01.rb
|
|
400
407
|
- test/regression/test_chart_bar02.rb
|
|
401
408
|
- test/regression/test_chart_bar03.rb
|
|
@@ -513,6 +520,7 @@ files:
|
|
|
513
520
|
- test/regression/test_chart_scatter05.rb
|
|
514
521
|
- test/regression/test_chart_scatter06.rb
|
|
515
522
|
- test/regression/test_chart_scatter07.rb
|
|
523
|
+
- test/regression/test_chart_scatter08.rb
|
|
516
524
|
- test/regression/test_chart_size01.rb
|
|
517
525
|
- test/regression/test_chart_size02.rb
|
|
518
526
|
- test/regression/test_chart_size03.rb
|
|
@@ -541,6 +549,7 @@ files:
|
|
|
541
549
|
- test/regression/test_comment08.rb
|
|
542
550
|
- test/regression/test_comment09.rb
|
|
543
551
|
- test/regression/test_comment10.rb
|
|
552
|
+
- test/regression/test_comment11.rb
|
|
544
553
|
- test/regression/test_cond_format01.rb
|
|
545
554
|
- test/regression/test_cond_format02.rb
|
|
546
555
|
- test/regression/test_cond_format03.rb
|
|
@@ -676,8 +685,14 @@ files:
|
|
|
676
685
|
- test/regression/test_row_col_format12.rb
|
|
677
686
|
- test/regression/test_row_col_format13.rb
|
|
678
687
|
- test/regression/test_row_col_format14.rb
|
|
688
|
+
- test/regression/test_selection01.rb
|
|
689
|
+
- test/regression/test_selection02.rb
|
|
679
690
|
- test/regression/test_set_print_scale01.rb
|
|
680
691
|
- test/regression/test_set_start_page01.rb
|
|
692
|
+
- test/regression/test_shape01.rb
|
|
693
|
+
- test/regression/test_shape02.rb
|
|
694
|
+
- test/regression/test_shape03.rb
|
|
695
|
+
- test/regression/test_shape04.rb
|
|
681
696
|
- test/regression/test_shape_connect01.rb
|
|
682
697
|
- test/regression/test_shape_connect02.rb
|
|
683
698
|
- test/regression/test_shape_connect03.rb
|
|
@@ -706,9 +721,19 @@ files:
|
|
|
706
721
|
- test/regression/test_table12.rb
|
|
707
722
|
- test/regression/test_table13.rb
|
|
708
723
|
- test/regression/test_table14.rb
|
|
724
|
+
- test/regression/test_table15.rb
|
|
709
725
|
- test/regression/test_tutorial01.rb
|
|
710
726
|
- test/regression/test_tutorial02.rb
|
|
711
727
|
- test/regression/test_tutorial03.rb
|
|
728
|
+
- test/regression/test_utf8_01.rb
|
|
729
|
+
- test/regression/test_utf8_03.rb
|
|
730
|
+
- test/regression/test_utf8_04.rb
|
|
731
|
+
- test/regression/test_utf8_05.rb
|
|
732
|
+
- test/regression/test_utf8_06.rb
|
|
733
|
+
- test/regression/test_utf8_07.rb
|
|
734
|
+
- test/regression/test_utf8_08.rb
|
|
735
|
+
- test/regression/test_utf8_09.rb
|
|
736
|
+
- test/regression/test_utf8_10.rb
|
|
712
737
|
- test/regression/test_vml01.rb
|
|
713
738
|
- test/regression/test_vml02.rb
|
|
714
739
|
- test/regression/test_vml03.rb
|
|
@@ -728,6 +753,11 @@ files:
|
|
|
728
753
|
- test/regression/xlsx_files/button04.xlsx
|
|
729
754
|
- test/regression/xlsx_files/button05.xlsx
|
|
730
755
|
- test/regression/xlsx_files/button07.xlsm
|
|
756
|
+
- test/regression/xlsx_files/button08.xlsx
|
|
757
|
+
- test/regression/xlsx_files/button09.xlsx
|
|
758
|
+
- test/regression/xlsx_files/button10.xlsx
|
|
759
|
+
- test/regression/xlsx_files/button11.xlsx
|
|
760
|
+
- test/regression/xlsx_files/button12.xlsx
|
|
731
761
|
- test/regression/xlsx_files/chart_area01.xlsx
|
|
732
762
|
- test/regression/xlsx_files/chart_area02.xlsx
|
|
733
763
|
- test/regression/xlsx_files/chart_area03.xlsx
|
|
@@ -756,6 +786,11 @@ files:
|
|
|
756
786
|
- test/regression/xlsx_files/chart_axis22.xlsx
|
|
757
787
|
- test/regression/xlsx_files/chart_axis23.xlsx
|
|
758
788
|
- test/regression/xlsx_files/chart_axis24.xlsx
|
|
789
|
+
- test/regression/xlsx_files/chart_axis25.xlsx
|
|
790
|
+
- test/regression/xlsx_files/chart_axis26.xlsx
|
|
791
|
+
- test/regression/xlsx_files/chart_axis27.xlsx
|
|
792
|
+
- test/regression/xlsx_files/chart_axis28.xlsx
|
|
793
|
+
- test/regression/xlsx_files/chart_axis29.xlsx
|
|
759
794
|
- test/regression/xlsx_files/chart_bar01.xlsx
|
|
760
795
|
- test/regression/xlsx_files/chart_bar02.xlsx
|
|
761
796
|
- test/regression/xlsx_files/chart_bar03.xlsx
|
|
@@ -871,6 +906,7 @@ files:
|
|
|
871
906
|
- test/regression/xlsx_files/chart_scatter05.xlsx
|
|
872
907
|
- test/regression/xlsx_files/chart_scatter06.xlsx
|
|
873
908
|
- test/regression/xlsx_files/chart_scatter07.xlsx
|
|
909
|
+
- test/regression/xlsx_files/chart_scatter08.xlsx
|
|
874
910
|
- test/regression/xlsx_files/chart_size01.xlsx
|
|
875
911
|
- test/regression/xlsx_files/chart_sparse01.xlsx
|
|
876
912
|
- test/regression/xlsx_files/chart_stock01.xlsx
|
|
@@ -898,6 +934,7 @@ files:
|
|
|
898
934
|
- test/regression/xlsx_files/comment08.xlsx
|
|
899
935
|
- test/regression/xlsx_files/comment09.xlsx
|
|
900
936
|
- test/regression/xlsx_files/comment10.xlsx
|
|
937
|
+
- test/regression/xlsx_files/comment11.xlsx
|
|
901
938
|
- test/regression/xlsx_files/cond_format01.xlsx
|
|
902
939
|
- test/regression/xlsx_files/cond_format02.xlsx
|
|
903
940
|
- test/regression/xlsx_files/cond_format03.xlsx
|
|
@@ -1034,8 +1071,14 @@ files:
|
|
|
1034
1071
|
- test/regression/xlsx_files/row_col_format12.xlsx
|
|
1035
1072
|
- test/regression/xlsx_files/row_col_format13.xlsx
|
|
1036
1073
|
- test/regression/xlsx_files/row_col_format14.xlsx
|
|
1074
|
+
- test/regression/xlsx_files/selection01.xlsx
|
|
1075
|
+
- test/regression/xlsx_files/selection02.xlsx
|
|
1037
1076
|
- test/regression/xlsx_files/set_print_scale01.xlsx
|
|
1038
1077
|
- test/regression/xlsx_files/set_start_page01.xlsx
|
|
1078
|
+
- test/regression/xlsx_files/shape01.xlsx
|
|
1079
|
+
- test/regression/xlsx_files/shape02.xlsx
|
|
1080
|
+
- test/regression/xlsx_files/shape03.xlsx
|
|
1081
|
+
- test/regression/xlsx_files/shape04.xlsx
|
|
1039
1082
|
- test/regression/xlsx_files/shape_connect01.xlsx
|
|
1040
1083
|
- test/regression/xlsx_files/shape_connect02.xlsx
|
|
1041
1084
|
- test/regression/xlsx_files/shape_connect03.xlsx
|
|
@@ -1064,9 +1107,19 @@ files:
|
|
|
1064
1107
|
- test/regression/xlsx_files/table12.xlsx
|
|
1065
1108
|
- test/regression/xlsx_files/table13.xlsx
|
|
1066
1109
|
- test/regression/xlsx_files/table14.xlsx
|
|
1110
|
+
- test/regression/xlsx_files/table15.xlsx
|
|
1067
1111
|
- test/regression/xlsx_files/tutorial01.xlsx
|
|
1068
1112
|
- test/regression/xlsx_files/tutorial02.xlsx
|
|
1069
1113
|
- test/regression/xlsx_files/tutorial03.xlsx
|
|
1114
|
+
- test/regression/xlsx_files/utf8_01.xlsx
|
|
1115
|
+
- test/regression/xlsx_files/utf8_03.xlsx
|
|
1116
|
+
- test/regression/xlsx_files/utf8_04.xlsx
|
|
1117
|
+
- test/regression/xlsx_files/utf8_05.xlsx
|
|
1118
|
+
- test/regression/xlsx_files/utf8_06.xlsx
|
|
1119
|
+
- test/regression/xlsx_files/utf8_07.xlsx
|
|
1120
|
+
- test/regression/xlsx_files/utf8_08.xlsx
|
|
1121
|
+
- test/regression/xlsx_files/utf8_09.xlsx
|
|
1122
|
+
- test/regression/xlsx_files/utf8_10.xlsx
|
|
1070
1123
|
- test/regression/xlsx_files/vbaProject01.bin
|
|
1071
1124
|
- test/regression/xlsx_files/vbaProject02.bin
|
|
1072
1125
|
- test/regression/xlsx_files/vml01.xlsx
|
|
@@ -1077,6 +1130,7 @@ files:
|
|
|
1077
1130
|
- test/test_example_match.rb
|
|
1078
1131
|
- test/test_xml_writer_simple.rb
|
|
1079
1132
|
- test/vbaProject.bin
|
|
1133
|
+
- test/workbook/test_define_name.rb
|
|
1080
1134
|
- test/workbook/test_get_chart_range.rb
|
|
1081
1135
|
- test/workbook/test_sort_defined_names.rb
|
|
1082
1136
|
- test/workbook/test_workbook_01.rb
|
|
@@ -1109,6 +1163,7 @@ files:
|
|
|
1109
1163
|
- test/worksheet/test_convert_date_time_01.rb
|
|
1110
1164
|
- test/worksheet/test_convert_date_time_02.rb
|
|
1111
1165
|
- test/worksheet/test_convert_date_time_03.rb
|
|
1166
|
+
- test/worksheet/test_convert_date_time_04.rb
|
|
1112
1167
|
- test/worksheet/test_extract_filter_tokens.rb
|
|
1113
1168
|
- test/worksheet/test_parse_filter_expression.rb
|
|
1114
1169
|
- test/worksheet/test_position_object.rb
|
|
@@ -1199,7 +1254,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1199
1254
|
version: '0'
|
|
1200
1255
|
requirements: []
|
|
1201
1256
|
rubyforge_project:
|
|
1202
|
-
rubygems_version: 2.0.
|
|
1257
|
+
rubygems_version: 2.0.3
|
|
1203
1258
|
signing_key:
|
|
1204
1259
|
specification_version: 4
|
|
1205
1260
|
summary: write_xlsx is a gem to create a new file in the Excel 2007+ XLSX format.
|
|
@@ -1298,6 +1353,7 @@ test_files:
|
|
|
1298
1353
|
- test/package/table/test_table10.rb
|
|
1299
1354
|
- test/package/table/test_table11.rb
|
|
1300
1355
|
- test/package/table/test_table12.rb
|
|
1356
|
+
- test/package/table/test_table13.rb
|
|
1301
1357
|
- test/package/table/test_write_auto_filter.rb
|
|
1302
1358
|
- test/package/table/test_write_table_column.rb
|
|
1303
1359
|
- test/package/table/test_write_table_style_info.rb
|
|
@@ -1398,6 +1454,7 @@ test_files:
|
|
|
1398
1454
|
- test/regression/test_button05.rb
|
|
1399
1455
|
- test/regression/test_button06.rb
|
|
1400
1456
|
- test/regression/test_button07.rb
|
|
1457
|
+
- test/regression/test_button08.rb
|
|
1401
1458
|
- test/regression/test_chart_area01.rb
|
|
1402
1459
|
- test/regression/test_chart_area02.rb
|
|
1403
1460
|
- test/regression/test_chart_area03.rb
|
|
@@ -1425,6 +1482,11 @@ test_files:
|
|
|
1425
1482
|
- test/regression/test_chart_axis22.rb
|
|
1426
1483
|
- test/regression/test_chart_axis23.rb
|
|
1427
1484
|
- test/regression/test_chart_axis24.rb
|
|
1485
|
+
- test/regression/test_chart_axis25.rb
|
|
1486
|
+
- test/regression/test_chart_axis26.rb
|
|
1487
|
+
- test/regression/test_chart_axis27.rb
|
|
1488
|
+
- test/regression/test_chart_axis28.rb
|
|
1489
|
+
- test/regression/test_chart_axis29.rb
|
|
1428
1490
|
- test/regression/test_chart_bar01.rb
|
|
1429
1491
|
- test/regression/test_chart_bar02.rb
|
|
1430
1492
|
- test/regression/test_chart_bar03.rb
|
|
@@ -1542,6 +1604,7 @@ test_files:
|
|
|
1542
1604
|
- test/regression/test_chart_scatter05.rb
|
|
1543
1605
|
- test/regression/test_chart_scatter06.rb
|
|
1544
1606
|
- test/regression/test_chart_scatter07.rb
|
|
1607
|
+
- test/regression/test_chart_scatter08.rb
|
|
1545
1608
|
- test/regression/test_chart_size01.rb
|
|
1546
1609
|
- test/regression/test_chart_size02.rb
|
|
1547
1610
|
- test/regression/test_chart_size03.rb
|
|
@@ -1570,6 +1633,7 @@ test_files:
|
|
|
1570
1633
|
- test/regression/test_comment08.rb
|
|
1571
1634
|
- test/regression/test_comment09.rb
|
|
1572
1635
|
- test/regression/test_comment10.rb
|
|
1636
|
+
- test/regression/test_comment11.rb
|
|
1573
1637
|
- test/regression/test_cond_format01.rb
|
|
1574
1638
|
- test/regression/test_cond_format02.rb
|
|
1575
1639
|
- test/regression/test_cond_format03.rb
|
|
@@ -1705,8 +1769,14 @@ test_files:
|
|
|
1705
1769
|
- test/regression/test_row_col_format12.rb
|
|
1706
1770
|
- test/regression/test_row_col_format13.rb
|
|
1707
1771
|
- test/regression/test_row_col_format14.rb
|
|
1772
|
+
- test/regression/test_selection01.rb
|
|
1773
|
+
- test/regression/test_selection02.rb
|
|
1708
1774
|
- test/regression/test_set_print_scale01.rb
|
|
1709
1775
|
- test/regression/test_set_start_page01.rb
|
|
1776
|
+
- test/regression/test_shape01.rb
|
|
1777
|
+
- test/regression/test_shape02.rb
|
|
1778
|
+
- test/regression/test_shape03.rb
|
|
1779
|
+
- test/regression/test_shape04.rb
|
|
1710
1780
|
- test/regression/test_shape_connect01.rb
|
|
1711
1781
|
- test/regression/test_shape_connect02.rb
|
|
1712
1782
|
- test/regression/test_shape_connect03.rb
|
|
@@ -1735,9 +1805,19 @@ test_files:
|
|
|
1735
1805
|
- test/regression/test_table12.rb
|
|
1736
1806
|
- test/regression/test_table13.rb
|
|
1737
1807
|
- test/regression/test_table14.rb
|
|
1808
|
+
- test/regression/test_table15.rb
|
|
1738
1809
|
- test/regression/test_tutorial01.rb
|
|
1739
1810
|
- test/regression/test_tutorial02.rb
|
|
1740
1811
|
- test/regression/test_tutorial03.rb
|
|
1812
|
+
- test/regression/test_utf8_01.rb
|
|
1813
|
+
- test/regression/test_utf8_03.rb
|
|
1814
|
+
- test/regression/test_utf8_04.rb
|
|
1815
|
+
- test/regression/test_utf8_05.rb
|
|
1816
|
+
- test/regression/test_utf8_06.rb
|
|
1817
|
+
- test/regression/test_utf8_07.rb
|
|
1818
|
+
- test/regression/test_utf8_08.rb
|
|
1819
|
+
- test/regression/test_utf8_09.rb
|
|
1820
|
+
- test/regression/test_utf8_10.rb
|
|
1741
1821
|
- test/regression/test_vml01.rb
|
|
1742
1822
|
- test/regression/test_vml02.rb
|
|
1743
1823
|
- test/regression/test_vml03.rb
|
|
@@ -1757,6 +1837,11 @@ test_files:
|
|
|
1757
1837
|
- test/regression/xlsx_files/button04.xlsx
|
|
1758
1838
|
- test/regression/xlsx_files/button05.xlsx
|
|
1759
1839
|
- test/regression/xlsx_files/button07.xlsm
|
|
1840
|
+
- test/regression/xlsx_files/button08.xlsx
|
|
1841
|
+
- test/regression/xlsx_files/button09.xlsx
|
|
1842
|
+
- test/regression/xlsx_files/button10.xlsx
|
|
1843
|
+
- test/regression/xlsx_files/button11.xlsx
|
|
1844
|
+
- test/regression/xlsx_files/button12.xlsx
|
|
1760
1845
|
- test/regression/xlsx_files/chart_area01.xlsx
|
|
1761
1846
|
- test/regression/xlsx_files/chart_area02.xlsx
|
|
1762
1847
|
- test/regression/xlsx_files/chart_area03.xlsx
|
|
@@ -1785,6 +1870,11 @@ test_files:
|
|
|
1785
1870
|
- test/regression/xlsx_files/chart_axis22.xlsx
|
|
1786
1871
|
- test/regression/xlsx_files/chart_axis23.xlsx
|
|
1787
1872
|
- test/regression/xlsx_files/chart_axis24.xlsx
|
|
1873
|
+
- test/regression/xlsx_files/chart_axis25.xlsx
|
|
1874
|
+
- test/regression/xlsx_files/chart_axis26.xlsx
|
|
1875
|
+
- test/regression/xlsx_files/chart_axis27.xlsx
|
|
1876
|
+
- test/regression/xlsx_files/chart_axis28.xlsx
|
|
1877
|
+
- test/regression/xlsx_files/chart_axis29.xlsx
|
|
1788
1878
|
- test/regression/xlsx_files/chart_bar01.xlsx
|
|
1789
1879
|
- test/regression/xlsx_files/chart_bar02.xlsx
|
|
1790
1880
|
- test/regression/xlsx_files/chart_bar03.xlsx
|
|
@@ -1900,6 +1990,7 @@ test_files:
|
|
|
1900
1990
|
- test/regression/xlsx_files/chart_scatter05.xlsx
|
|
1901
1991
|
- test/regression/xlsx_files/chart_scatter06.xlsx
|
|
1902
1992
|
- test/regression/xlsx_files/chart_scatter07.xlsx
|
|
1993
|
+
- test/regression/xlsx_files/chart_scatter08.xlsx
|
|
1903
1994
|
- test/regression/xlsx_files/chart_size01.xlsx
|
|
1904
1995
|
- test/regression/xlsx_files/chart_sparse01.xlsx
|
|
1905
1996
|
- test/regression/xlsx_files/chart_stock01.xlsx
|
|
@@ -1927,6 +2018,7 @@ test_files:
|
|
|
1927
2018
|
- test/regression/xlsx_files/comment08.xlsx
|
|
1928
2019
|
- test/regression/xlsx_files/comment09.xlsx
|
|
1929
2020
|
- test/regression/xlsx_files/comment10.xlsx
|
|
2021
|
+
- test/regression/xlsx_files/comment11.xlsx
|
|
1930
2022
|
- test/regression/xlsx_files/cond_format01.xlsx
|
|
1931
2023
|
- test/regression/xlsx_files/cond_format02.xlsx
|
|
1932
2024
|
- test/regression/xlsx_files/cond_format03.xlsx
|
|
@@ -2063,8 +2155,14 @@ test_files:
|
|
|
2063
2155
|
- test/regression/xlsx_files/row_col_format12.xlsx
|
|
2064
2156
|
- test/regression/xlsx_files/row_col_format13.xlsx
|
|
2065
2157
|
- test/regression/xlsx_files/row_col_format14.xlsx
|
|
2158
|
+
- test/regression/xlsx_files/selection01.xlsx
|
|
2159
|
+
- test/regression/xlsx_files/selection02.xlsx
|
|
2066
2160
|
- test/regression/xlsx_files/set_print_scale01.xlsx
|
|
2067
2161
|
- test/regression/xlsx_files/set_start_page01.xlsx
|
|
2162
|
+
- test/regression/xlsx_files/shape01.xlsx
|
|
2163
|
+
- test/regression/xlsx_files/shape02.xlsx
|
|
2164
|
+
- test/regression/xlsx_files/shape03.xlsx
|
|
2165
|
+
- test/regression/xlsx_files/shape04.xlsx
|
|
2068
2166
|
- test/regression/xlsx_files/shape_connect01.xlsx
|
|
2069
2167
|
- test/regression/xlsx_files/shape_connect02.xlsx
|
|
2070
2168
|
- test/regression/xlsx_files/shape_connect03.xlsx
|
|
@@ -2093,9 +2191,19 @@ test_files:
|
|
|
2093
2191
|
- test/regression/xlsx_files/table12.xlsx
|
|
2094
2192
|
- test/regression/xlsx_files/table13.xlsx
|
|
2095
2193
|
- test/regression/xlsx_files/table14.xlsx
|
|
2194
|
+
- test/regression/xlsx_files/table15.xlsx
|
|
2096
2195
|
- test/regression/xlsx_files/tutorial01.xlsx
|
|
2097
2196
|
- test/regression/xlsx_files/tutorial02.xlsx
|
|
2098
2197
|
- test/regression/xlsx_files/tutorial03.xlsx
|
|
2198
|
+
- test/regression/xlsx_files/utf8_01.xlsx
|
|
2199
|
+
- test/regression/xlsx_files/utf8_03.xlsx
|
|
2200
|
+
- test/regression/xlsx_files/utf8_04.xlsx
|
|
2201
|
+
- test/regression/xlsx_files/utf8_05.xlsx
|
|
2202
|
+
- test/regression/xlsx_files/utf8_06.xlsx
|
|
2203
|
+
- test/regression/xlsx_files/utf8_07.xlsx
|
|
2204
|
+
- test/regression/xlsx_files/utf8_08.xlsx
|
|
2205
|
+
- test/regression/xlsx_files/utf8_09.xlsx
|
|
2206
|
+
- test/regression/xlsx_files/utf8_10.xlsx
|
|
2099
2207
|
- test/regression/xlsx_files/vbaProject01.bin
|
|
2100
2208
|
- test/regression/xlsx_files/vbaProject02.bin
|
|
2101
2209
|
- test/regression/xlsx_files/vml01.xlsx
|
|
@@ -2106,6 +2214,7 @@ test_files:
|
|
|
2106
2214
|
- test/test_example_match.rb
|
|
2107
2215
|
- test/test_xml_writer_simple.rb
|
|
2108
2216
|
- test/vbaProject.bin
|
|
2217
|
+
- test/workbook/test_define_name.rb
|
|
2109
2218
|
- test/workbook/test_get_chart_range.rb
|
|
2110
2219
|
- test/workbook/test_sort_defined_names.rb
|
|
2111
2220
|
- test/workbook/test_workbook_01.rb
|
|
@@ -2138,6 +2247,7 @@ test_files:
|
|
|
2138
2247
|
- test/worksheet/test_convert_date_time_01.rb
|
|
2139
2248
|
- test/worksheet/test_convert_date_time_02.rb
|
|
2140
2249
|
- test/worksheet/test_convert_date_time_03.rb
|
|
2250
|
+
- test/worksheet/test_convert_date_time_04.rb
|
|
2141
2251
|
- test/worksheet/test_extract_filter_tokens.rb
|
|
2142
2252
|
- test/worksheet/test_parse_filter_expression.rb
|
|
2143
2253
|
- test/worksheet/test_position_object.rb
|