writeexcel 0.4.0 → 0.4.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/.gitignore +3 -0
- data/README.rdoc +4 -0
- data/VERSION +1 -1
- data/examples/utf8.rb +15 -0
- data/lib/writeexcel.rb +24 -1
- data/lib/writeexcel/biffwriter.rb +2 -44
- data/lib/writeexcel/caller_info.rb +12 -0
- data/lib/writeexcel/chart.rb +11 -85
- data/lib/writeexcel/colors.rb +59 -0
- data/lib/writeexcel/compatibility.rb +1 -1
- data/lib/writeexcel/debug_info.rb +33 -0
- data/lib/writeexcel/excelformula.y +139 -139
- data/lib/writeexcel/format.rb +23 -124
- data/lib/writeexcel/formula.rb +6 -3
- data/lib/writeexcel/helper.rb +19 -0
- data/lib/writeexcel/olewriter.rb +1 -1
- data/lib/writeexcel/storage_lite.rb +4 -4
- data/lib/writeexcel/workbook.rb +156 -279
- data/lib/writeexcel/worksheet.rb +335 -541
- data/lib/writeexcel/write_file.rb +40 -0
- data/test/perl_output/README +31 -31
- data/test/perl_output/utf8.xls +0 -0
- data/test/test_example_match.rb +14 -0
- data/test/test_format.rb +17 -17
- data/test/test_workbook.rb +23 -0
- data/test/test_worksheet.rb +0 -1
- data/writeexcel.gemspec +9 -2
- data/writeexcel.rdoc +266 -64
- metadata +10 -3
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
|
-
-
|
9
|
-
version: 0.4.
|
8
|
+
- 1
|
9
|
+
version: 0.4.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Hideo NAKAMURA
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-04-
|
17
|
+
date: 2010-04-27 00:00:00 +09:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
@@ -91,9 +91,11 @@ files:
|
|
91
91
|
- examples/stats.rb
|
92
92
|
- examples/stocks.rb
|
93
93
|
- examples/tab_colors.rb
|
94
|
+
- examples/utf8.rb
|
94
95
|
- examples/write_arrays.rb
|
95
96
|
- lib/writeexcel.rb
|
96
97
|
- lib/writeexcel/biffwriter.rb
|
98
|
+
- lib/writeexcel/caller_info.rb
|
97
99
|
- lib/writeexcel/chart.rb
|
98
100
|
- lib/writeexcel/charts/area.rb
|
99
101
|
- lib/writeexcel/charts/bar.rb
|
@@ -103,7 +105,9 @@ files:
|
|
103
105
|
- lib/writeexcel/charts/pie.rb
|
104
106
|
- lib/writeexcel/charts/scatter.rb
|
105
107
|
- lib/writeexcel/charts/stock.rb
|
108
|
+
- lib/writeexcel/colors.rb
|
106
109
|
- lib/writeexcel/compatibility.rb
|
110
|
+
- lib/writeexcel/debug_info.rb
|
107
111
|
- lib/writeexcel/excelformula.y
|
108
112
|
- lib/writeexcel/excelformulaparser.rb
|
109
113
|
- lib/writeexcel/format.rb
|
@@ -114,6 +118,7 @@ files:
|
|
114
118
|
- lib/writeexcel/storage_lite.rb
|
115
119
|
- lib/writeexcel/workbook.rb
|
116
120
|
- lib/writeexcel/worksheet.rb
|
121
|
+
- lib/writeexcel/write_file.rb
|
117
122
|
- test/excelfile/Chart1.xls
|
118
123
|
- test/excelfile/Chart2.xls
|
119
124
|
- test/excelfile/Chart3.xls
|
@@ -176,6 +181,7 @@ files:
|
|
176
181
|
- test/perl_output/stocks.xls
|
177
182
|
- test/perl_output/tab_colors.xls
|
178
183
|
- test/perl_output/unicode_cyrillic.xls
|
184
|
+
- test/perl_output/utf8.xls
|
179
185
|
- test/perl_output/workbook1.xls
|
180
186
|
- test/perl_output/workbook2.xls
|
181
187
|
- test/perl_output/ws_colinfo
|
@@ -350,4 +356,5 @@ test_files:
|
|
350
356
|
- examples/stats.rb
|
351
357
|
- examples/stocks.rb
|
352
358
|
- examples/tab_colors.rb
|
359
|
+
- examples/utf8.rb
|
353
360
|
- examples/write_arrays.rb
|