surpass 0.0.4 → 0.0.6
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/History.txt +4 -0
- data/README.txt +3 -20
- data/Rakefile +2 -13
- data/bin/surpass +8 -0
- data/examples/big-16mb.rb +25 -0
- data/examples/big-random-strings.rb +28 -0
- data/examples/blanks.rb +34 -0
- data/examples/blanks.xls +0 -0
- data/examples/col_width.rb +16 -0
- data/examples/col_width.xls +0 -0
- data/examples/dates.rb +31 -0
- data/examples/dates.xls +0 -0
- data/examples/format.rb +23 -0
- data/examples/format.xls +0 -0
- data/examples/hello-world.rb +9 -0
- data/examples/hello-world.xls +0 -0
- data/examples/image.rb +10 -0
- data/examples/image.xls +0 -0
- data/examples/merged.rb +36 -0
- data/examples/merged.xls +0 -0
- data/examples/merged0.rb +27 -0
- data/examples/merged0.xls +0 -0
- data/examples/merged1.rb +99 -0
- data/examples/merged1.xls +0 -0
- data/examples/num_formats.rb +55 -0
- data/examples/num_formats.xls +0 -0
- data/examples/numbers.rb +24 -0
- data/examples/numbers.xls +0 -0
- data/examples/outline.rb +110 -0
- data/examples/outline.xls +0 -0
- data/examples/panes.rb +48 -0
- data/examples/panes.xls +0 -0
- data/examples/protection.rb +132 -0
- data/examples/protection.xls +0 -0
- data/examples/python.bmp +0 -0
- data/examples/row_styles.rb +16 -0
- data/examples/row_styles.xls +0 -0
- data/examples/row_styles_empty.rb +15 -0
- data/examples/row_styles_empty.xls +0 -0
- data/examples/set_cell_and_range_style.rb +12 -0
- data/examples/set_cell_and_range_style.xls +0 -0
- data/examples/wrapped-text.rb +13 -0
- data/examples/wrapped-text.xls +0 -0
- data/examples/write_arrays.rb +22 -0
- data/examples/write_arrays.xls +0 -0
- data/examples/ws_props.rb +80 -0
- data/lib/surpass/ExcelFormula.g +366 -0
- data/lib/surpass/ExcelFormula.tokens +30 -0
- data/lib/surpass/ExcelFormulaLexer.rb +922 -0
- data/lib/surpass/ExcelFormulaParser.rb +602 -0
- data/lib/{biff_record.rb → surpass/biff_record.rb} +0 -0
- data/lib/{bitmap.rb → surpass/bitmap.rb} +0 -0
- data/lib/{cell.rb → surpass/cell.rb} +2 -34
- data/lib/{chart.rb → surpass/chart.rb} +0 -0
- data/lib/{column.rb → surpass/column.rb} +0 -0
- data/lib/{document.rb → surpass/document.rb} +0 -0
- data/lib/surpass/excel_formula.rb +23 -0
- data/lib/{excel_magic.rb → surpass/excel_magic.rb} +0 -0
- data/lib/{formatting.rb → surpass/formatting.rb} +93 -53
- data/lib/{row.rb → surpass/row.rb} +0 -0
- data/lib/{style.rb → surpass/style.rb} +2 -1
- data/lib/surpass/tokens.txt +2 -0
- data/lib/{utilities.rb → surpass/utilities.rb} +0 -0
- data/lib/{workbook.rb → surpass/workbook.rb} +0 -0
- data/lib/{worksheet.rb → surpass/worksheet.rb} +15 -6
- data/lib/surpass.rb +1 -1
- data/spec/biff_record_spec.rb +268 -0
- data/spec/cell_spec.rb +56 -0
- data/spec/data/random-strings.txt +10000 -0
- data/spec/document_spec.rb +168 -0
- data/spec/excel_formula_spec.rb +27 -0
- data/spec/formatting_spec.rb +53 -0
- data/spec/output/cells-rk.xls +0 -0
- data/spec/output/cells.xls +0 -0
- data/spec/output/mini.xls +0 -0
- data/spec/reference/P-0508-0000507647-3280-5298.xls +0 -0
- data/spec/reference/all-cell-styles.bin +0 -0
- data/spec/reference/all-number-formats.bin +0 -0
- data/spec/reference/all-styles.bin +0 -0
- data/spec/reference/mini.xls +0 -0
- data/spec/row_spec.rb +19 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/style_spec.rb +89 -0
- data/spec/surpass_spec.rb +7 -0
- data/spec/utilities_spec.rb +57 -0
- data/spec/workbook_spec.rb +48 -0
- data/spec/worksheet_spec.rb +0 -0
- data/stats/cloc.txt +8 -0
- data/stats/rcov.txt +0 -0
- data/stats/specdoc.txt +158 -0
- data/surpass.gemspec +40 -0
- data/tasks/setup.rb +1 -1
- data/tasks/zentest.rake +36 -0
- data/webby/README.txt +6 -0
- data/webby/Sitefile +43 -0
- data/webby/content/css/pygments.txt +6 -0
- data/webby/content/css/style.css +279 -0
- data/webby/content/examples/autoformat.png +0 -0
- data/webby/content/examples/autoformat.rb +32 -0
- data/webby/content/examples/autoformat.xls +0 -0
- data/webby/content/examples/borders.png +0 -0
- data/webby/content/examples/borders.rb +15 -0
- data/webby/content/examples/borders.xls +0 -0
- data/webby/content/examples/colours.png +0 -0
- data/webby/content/examples/colours.rb +23 -0
- data/webby/content/examples/colours.xls +0 -0
- data/webby/content/examples/data.png +0 -0
- data/webby/content/examples/data.rb +11 -0
- data/webby/content/examples/data.xls +0 -0
- data/webby/content/examples/formatting.png +0 -0
- data/webby/content/examples/formatting.rb +78 -0
- data/webby/content/examples/formatting.xls +0 -0
- data/webby/content/examples/hello-world.png +0 -0
- data/webby/content/examples/hello-world.py +8 -0
- data/webby/content/examples/hello-world.rb +9 -0
- data/webby/content/examples/hello-world.xls +0 -0
- data/webby/content/examples/number-format-string.png +0 -0
- data/webby/content/examples/number-format-string.rb +14 -0
- data/webby/content/examples/number-format-string.xls +0 -0
- data/webby/content/examples/patterns.png +0 -0
- data/webby/content/examples/patterns.rb +26 -0
- data/webby/content/examples/patterns.xls +0 -0
- data/webby/content/examples/show-greens.sh +1 -0
- data/webby/content/examples/surpass-info.sh +1 -0
- data/webby/content/img/Thumbs.db +0 -0
- data/webby/content/img/bg_menu.gif +0 -0
- data/webby/content/img/bg_t.gif +0 -0
- data/webby/content/img/bullet.gif +0 -0
- data/webby/content/img/logo.png +0 -0
- data/webby/content/img/logo_.jpg +0 -0
- data/webby/content/img/top_bg.gif +0 -0
- data/webby/content/img/top_bg_.gif +0 -0
- data/webby/content/index.txt +16 -0
- data/webby/content/installation/index.txt +24 -0
- data/webby/content/source/ExcelFormulaLexer.txt +7 -0
- data/webby/content/source/ExcelFormulaParser.txt +7 -0
- data/webby/content/source/biff_record.txt +7 -0
- data/webby/content/source/bitmap.txt +7 -0
- data/webby/content/source/cell.txt +7 -0
- data/webby/content/source/chart.txt +7 -0
- data/webby/content/source/column.txt +7 -0
- data/webby/content/source/document.txt +7 -0
- data/webby/content/source/excel_formula.txt +7 -0
- data/webby/content/source/excel_magic.txt +7 -0
- data/webby/content/source/formatting.txt +7 -0
- data/webby/content/source/row.txt +7 -0
- data/webby/content/source/style.txt +7 -0
- data/webby/content/source/utilities.txt +7 -0
- data/webby/content/source/workbook.txt +7 -0
- data/webby/content/source/worksheet.txt +7 -0
- data/webby/content/surpass-manual.erb +198 -0
- data/webby/layouts/book.txt +29 -0
- data/webby/layouts/default.txt +27 -0
- data/webby/layouts/two_column.txt +25 -0
- data/webby/layouts/web.txt +66 -0
- data/webby/output/.cairn +0 -0
- data/webby/output/css/blueprint/ie.css +26 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/key.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/webby/output/css/blueprint/plugins/buttons/readme.txt +32 -0
- data/webby/output/css/blueprint/plugins/buttons/screen.css +97 -0
- data/webby/output/css/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/webby/output/css/blueprint/plugins/fancy-type/screen.css +71 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/webby/output/css/blueprint/plugins/link-icons/readme.txt +18 -0
- data/webby/output/css/blueprint/plugins/link-icons/screen.css +40 -0
- data/webby/output/css/blueprint/plugins/rtl/readme.txt +10 -0
- data/webby/output/css/blueprint/plugins/rtl/screen.css +109 -0
- data/webby/output/css/blueprint/print.css +30 -0
- data/webby/output/css/blueprint/screen.css +251 -0
- data/webby/output/css/blueprint/src/forms.css +49 -0
- data/webby/output/css/blueprint/src/grid.css +212 -0
- data/webby/output/css/blueprint/src/grid.png +0 -0
- data/webby/output/css/blueprint/src/ie.css +59 -0
- data/webby/output/css/blueprint/src/print.css +85 -0
- data/webby/output/css/blueprint/src/reset.css +38 -0
- data/webby/output/css/blueprint/src/typography.css +105 -0
- data/webby/output/css/pygments.css +59 -0
- data/webby/output/css/site.css +62 -0
- data/webby/output/css/style.css +279 -0
- data/webby/output/examples/autoformat.png +0 -0
- data/webby/output/examples/autoformat.rb +32 -0
- data/webby/output/examples/autoformat.xls +0 -0
- data/webby/output/examples/borders.png +0 -0
- data/webby/output/examples/borders.rb +15 -0
- data/webby/output/examples/borders.xls +0 -0
- data/webby/output/examples/colours.png +0 -0
- data/webby/output/examples/colours.rb +23 -0
- data/webby/output/examples/colours.xls +0 -0
- data/webby/output/examples/data.png +0 -0
- data/webby/output/examples/data.rb +11 -0
- data/webby/output/examples/data.xls +0 -0
- data/webby/output/examples/formatting.png +0 -0
- data/webby/output/examples/formatting.rb +78 -0
- data/webby/output/examples/formatting.xls +0 -0
- data/webby/output/examples/hello-world.png +0 -0
- data/webby/output/examples/hello-world.py +8 -0
- data/webby/output/examples/hello-world.rb +9 -0
- data/webby/output/examples/hello-world.xls +0 -0
- data/webby/output/examples/number-format-string.png +0 -0
- data/webby/output/examples/number-format-string.rb +14 -0
- data/webby/output/examples/number-format-string.xls +0 -0
- data/webby/output/examples/patterns.png +0 -0
- data/webby/output/examples/patterns.rb +26 -0
- data/webby/output/examples/patterns.xls +0 -0
- data/webby/output/examples/show-greens.sh +1 -0
- data/webby/output/examples/surpass-info.sh +1 -0
- data/webby/output/img/Thumbs.db +0 -0
- data/webby/output/img/bg_menu.gif +0 -0
- data/webby/output/img/bg_t.gif +0 -0
- data/webby/output/img/bullet.gif +0 -0
- data/webby/output/img/logo.png +0 -0
- data/webby/output/img/logo_.jpg +0 -0
- data/webby/output/img/top_bg.gif +0 -0
- data/webby/output/img/top_bg_.gif +0 -0
- data/webby/output/index.html +138 -0
- data/webby/output/installation/index.html +64 -0
- data/webby/output/installation/installation.html +1 -0
- data/webby/output/installation.html +1 -0
- data/webby/output/source/ExcelFormulaLexer.html +981 -0
- data/webby/output/source/ExcelFormulaParser.html +661 -0
- data/webby/output/source/biff_record.html +462 -0
- data/webby/output/source/bitmap.html +277 -0
- data/webby/output/source/cell.html +241 -0
- data/webby/output/source/chart.html +64 -0
- data/webby/output/source/column.html +99 -0
- data/webby/output/source/document.html +465 -0
- data/webby/output/source/excel_formula.html +82 -0
- data/webby/output/source/excel_magic.html +1072 -0
- data/webby/output/source/formatting.html +664 -0
- data/webby/output/source/row.html +169 -0
- data/webby/output/source/style.html +158 -0
- data/webby/output/source/surpass.html +110 -0
- data/webby/output/source/utilities.html +145 -0
- data/webby/output/source/workbook.html +265 -0
- data/webby/output/source/worksheet.html +331 -0
- data/webby/output/surpass-manual-0-0-5.pdf +0 -0
- data/webby/output/surpass-manual.aux +50 -0
- data/webby/output/surpass-manual.log +366 -0
- data/webby/output/surpass-manual.out +20 -0
- data/webby/output/surpass-manual.tex +582 -0
- data/webby/output/surpass-manual.toc +20 -0
- data/webby/rsync-exclude +7 -0
- data/webby/tasks/latex.rake +14 -0
- data/webby/tasks/screenshots.rb +58 -0
- data/webby/templates/article.erb +15 -0
- data/webby/templates/book.erb +16 -0
- data/webby/templates/page.erb +9 -0
- metadata +302 -24
- data/bin/surpass-info +0 -20
- data/lib/excel_formula.rb +0 -6
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
title: <%= title %>
|
3
|
+
author:
|
4
|
+
created_at: <%= Time.now.to_y %>
|
5
|
+
layout: book
|
6
|
+
filter:
|
7
|
+
- erb
|
8
|
+
- idio
|
9
|
+
---
|
10
|
+
|
11
|
+
\chapter{chapter name} % (fold)
|
12
|
+
\label{cha:chapter_name}
|
13
|
+
|
14
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
15
|
+
|
16
|
+
% chapter chapter_name (end)
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
author:
|
4
|
+
created_at: <%= Time.now.to_y %>
|
5
|
+
filter:
|
6
|
+
- erb
|
7
|
+
---
|
8
|
+
|
9
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: surpass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ana Nelson
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-14 00:00:00 +00:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,40 +20,152 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.
|
23
|
+
version: 2.5.1
|
24
24
|
version:
|
25
|
-
description:
|
25
|
+
description: |-
|
26
|
+
Surpass is writing (and eventually reading) excel workbooks in pure Ruby. Surpass is based on xlwt (and pyExcelerator).
|
27
|
+
|
28
|
+
For comprehensive documentation, please refer to the PDF manual which is available from http://surpass.rubyforge.org or in the root directory of the source code repository.
|
29
|
+
|
30
|
+
If you like to learn from playing with working examples, then there are plenty in the examples/ and webby/examples directories of the source code.
|
26
31
|
email: ana@ananelson.com
|
27
32
|
executables:
|
28
|
-
- surpass
|
33
|
+
- surpass
|
29
34
|
extensions: []
|
30
35
|
|
31
36
|
extra_rdoc_files:
|
32
37
|
- History.txt
|
33
38
|
- LICENSE.txt
|
34
39
|
- README.txt
|
35
|
-
- bin/surpass
|
40
|
+
- bin/surpass
|
41
|
+
- lib/surpass/ExcelFormula.g
|
42
|
+
- lib/surpass/ExcelFormula.tokens
|
43
|
+
- lib/surpass/tokens.txt
|
44
|
+
- spec/data/random-strings.txt
|
45
|
+
- stats/cloc.txt
|
46
|
+
- stats/rcov.txt
|
47
|
+
- stats/specdoc.txt
|
48
|
+
- webby/README.txt
|
49
|
+
- webby/content/css/pygments.txt
|
50
|
+
- webby/content/index.txt
|
51
|
+
- webby/content/installation/index.txt
|
52
|
+
- webby/content/source/ExcelFormulaLexer.txt
|
53
|
+
- webby/content/source/ExcelFormulaParser.txt
|
54
|
+
- webby/content/source/biff_record.txt
|
55
|
+
- webby/content/source/bitmap.txt
|
56
|
+
- webby/content/source/cell.txt
|
57
|
+
- webby/content/source/chart.txt
|
58
|
+
- webby/content/source/column.txt
|
59
|
+
- webby/content/source/document.txt
|
60
|
+
- webby/content/source/excel_formula.txt
|
61
|
+
- webby/content/source/excel_magic.txt
|
62
|
+
- webby/content/source/formatting.txt
|
63
|
+
- webby/content/source/row.txt
|
64
|
+
- webby/content/source/style.txt
|
65
|
+
- webby/content/source/utilities.txt
|
66
|
+
- webby/content/source/workbook.txt
|
67
|
+
- webby/content/source/worksheet.txt
|
68
|
+
- webby/layouts/book.txt
|
69
|
+
- webby/layouts/default.txt
|
70
|
+
- webby/layouts/two_column.txt
|
71
|
+
- webby/layouts/web.txt
|
72
|
+
- webby/output/css/blueprint/plugins/buttons/readme.txt
|
73
|
+
- webby/output/css/blueprint/plugins/fancy-type/readme.txt
|
74
|
+
- webby/output/css/blueprint/plugins/link-icons/readme.txt
|
75
|
+
- webby/output/css/blueprint/plugins/rtl/readme.txt
|
36
76
|
files:
|
37
77
|
- History.txt
|
38
78
|
- LICENSE.txt
|
39
79
|
- README.txt
|
40
80
|
- Rakefile
|
41
|
-
- bin/surpass
|
42
|
-
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
-
|
46
|
-
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
-
|
51
|
-
-
|
52
|
-
-
|
81
|
+
- bin/surpass
|
82
|
+
- examples/big-16mb.rb
|
83
|
+
- examples/big-random-strings.rb
|
84
|
+
- examples/blanks.rb
|
85
|
+
- examples/blanks.xls
|
86
|
+
- examples/col_width.rb
|
87
|
+
- examples/col_width.xls
|
88
|
+
- examples/dates.rb
|
89
|
+
- examples/dates.xls
|
90
|
+
- examples/format.rb
|
91
|
+
- examples/format.xls
|
92
|
+
- examples/hello-world.rb
|
93
|
+
- examples/hello-world.xls
|
94
|
+
- examples/image.rb
|
95
|
+
- examples/image.xls
|
96
|
+
- examples/merged.rb
|
97
|
+
- examples/merged.xls
|
98
|
+
- examples/merged0.rb
|
99
|
+
- examples/merged0.xls
|
100
|
+
- examples/merged1.rb
|
101
|
+
- examples/merged1.xls
|
102
|
+
- examples/num_formats.rb
|
103
|
+
- examples/num_formats.xls
|
104
|
+
- examples/numbers.rb
|
105
|
+
- examples/numbers.xls
|
106
|
+
- examples/outline.rb
|
107
|
+
- examples/outline.xls
|
108
|
+
- examples/panes.rb
|
109
|
+
- examples/panes.xls
|
110
|
+
- examples/protection.rb
|
111
|
+
- examples/protection.xls
|
112
|
+
- examples/python.bmp
|
113
|
+
- examples/row_styles.rb
|
114
|
+
- examples/row_styles.xls
|
115
|
+
- examples/row_styles_empty.rb
|
116
|
+
- examples/row_styles_empty.xls
|
117
|
+
- examples/set_cell_and_range_style.rb
|
118
|
+
- examples/set_cell_and_range_style.xls
|
119
|
+
- examples/wrapped-text.rb
|
120
|
+
- examples/wrapped-text.xls
|
121
|
+
- examples/write_arrays.rb
|
122
|
+
- examples/write_arrays.xls
|
123
|
+
- examples/ws_props.rb
|
53
124
|
- lib/surpass.rb
|
54
|
-
- lib/
|
55
|
-
- lib/
|
56
|
-
- lib/
|
125
|
+
- lib/surpass/ExcelFormula.g
|
126
|
+
- lib/surpass/ExcelFormula.tokens
|
127
|
+
- lib/surpass/ExcelFormulaLexer.rb
|
128
|
+
- lib/surpass/ExcelFormulaParser.rb
|
129
|
+
- lib/surpass/biff_record.rb
|
130
|
+
- lib/surpass/bitmap.rb
|
131
|
+
- lib/surpass/cell.rb
|
132
|
+
- lib/surpass/chart.rb
|
133
|
+
- lib/surpass/column.rb
|
134
|
+
- lib/surpass/document.rb
|
135
|
+
- lib/surpass/excel_formula.rb
|
136
|
+
- lib/surpass/excel_magic.rb
|
137
|
+
- lib/surpass/formatting.rb
|
138
|
+
- lib/surpass/row.rb
|
139
|
+
- lib/surpass/style.rb
|
140
|
+
- lib/surpass/tokens.txt
|
141
|
+
- lib/surpass/utilities.rb
|
142
|
+
- lib/surpass/workbook.rb
|
143
|
+
- lib/surpass/worksheet.rb
|
144
|
+
- spec/biff_record_spec.rb
|
145
|
+
- spec/cell_spec.rb
|
146
|
+
- spec/data/random-strings.txt
|
147
|
+
- spec/document_spec.rb
|
148
|
+
- spec/excel_formula_spec.rb
|
149
|
+
- spec/formatting_spec.rb
|
150
|
+
- spec/output/cells-rk.xls
|
151
|
+
- spec/output/cells.xls
|
152
|
+
- spec/output/mini.xls
|
153
|
+
- spec/reference/P-0508-0000507647-3280-5298.xls
|
154
|
+
- spec/reference/all-cell-styles.bin
|
155
|
+
- spec/reference/all-number-formats.bin
|
156
|
+
- spec/reference/all-styles.bin
|
157
|
+
- spec/reference/mini.xls
|
158
|
+
- spec/row_spec.rb
|
159
|
+
- spec/spec_helper.rb
|
160
|
+
- spec/style_spec.rb
|
161
|
+
- spec/surpass_spec.rb
|
162
|
+
- spec/utilities_spec.rb
|
163
|
+
- spec/workbook_spec.rb
|
164
|
+
- spec/worksheet_spec.rb
|
165
|
+
- stats/cloc.txt
|
166
|
+
- stats/rcov.txt
|
167
|
+
- stats/specdoc.txt
|
168
|
+
- surpass.gemspec
|
57
169
|
- tasks/ann.rake
|
58
170
|
- tasks/bones.rake
|
59
171
|
- tasks/gem.rake
|
@@ -66,8 +178,174 @@ files:
|
|
66
178
|
- tasks/spec.rake
|
67
179
|
- tasks/svn.rake
|
68
180
|
- tasks/test.rake
|
181
|
+
- tasks/zentest.rake
|
182
|
+
- webby/README.txt
|
183
|
+
- webby/Sitefile
|
184
|
+
- webby/content/css/pygments.txt
|
185
|
+
- webby/content/css/style.css
|
186
|
+
- webby/content/examples/autoformat.png
|
187
|
+
- webby/content/examples/autoformat.rb
|
188
|
+
- webby/content/examples/autoformat.xls
|
189
|
+
- webby/content/examples/borders.png
|
190
|
+
- webby/content/examples/borders.rb
|
191
|
+
- webby/content/examples/borders.xls
|
192
|
+
- webby/content/examples/colours.png
|
193
|
+
- webby/content/examples/colours.rb
|
194
|
+
- webby/content/examples/colours.xls
|
195
|
+
- webby/content/examples/data.png
|
196
|
+
- webby/content/examples/data.rb
|
197
|
+
- webby/content/examples/data.xls
|
198
|
+
- webby/content/examples/formatting.png
|
199
|
+
- webby/content/examples/formatting.rb
|
200
|
+
- webby/content/examples/formatting.xls
|
201
|
+
- webby/content/examples/hello-world.png
|
202
|
+
- webby/content/examples/hello-world.py
|
203
|
+
- webby/content/examples/hello-world.rb
|
204
|
+
- webby/content/examples/hello-world.xls
|
205
|
+
- webby/content/examples/number-format-string.png
|
206
|
+
- webby/content/examples/number-format-string.rb
|
207
|
+
- webby/content/examples/number-format-string.xls
|
208
|
+
- webby/content/examples/patterns.png
|
209
|
+
- webby/content/examples/patterns.rb
|
210
|
+
- webby/content/examples/patterns.xls
|
211
|
+
- webby/content/examples/show-greens.sh
|
212
|
+
- webby/content/examples/surpass-info.sh
|
213
|
+
- webby/content/img/Thumbs.db
|
214
|
+
- webby/content/img/bg_menu.gif
|
215
|
+
- webby/content/img/bg_t.gif
|
216
|
+
- webby/content/img/bullet.gif
|
217
|
+
- webby/content/img/logo.png
|
218
|
+
- webby/content/img/logo_.jpg
|
219
|
+
- webby/content/img/top_bg.gif
|
220
|
+
- webby/content/img/top_bg_.gif
|
221
|
+
- webby/content/index.txt
|
222
|
+
- webby/content/installation/index.txt
|
223
|
+
- webby/content/source/ExcelFormulaLexer.txt
|
224
|
+
- webby/content/source/ExcelFormulaParser.txt
|
225
|
+
- webby/content/source/biff_record.txt
|
226
|
+
- webby/content/source/bitmap.txt
|
227
|
+
- webby/content/source/cell.txt
|
228
|
+
- webby/content/source/chart.txt
|
229
|
+
- webby/content/source/column.txt
|
230
|
+
- webby/content/source/document.txt
|
231
|
+
- webby/content/source/excel_formula.txt
|
232
|
+
- webby/content/source/excel_magic.txt
|
233
|
+
- webby/content/source/formatting.txt
|
234
|
+
- webby/content/source/row.txt
|
235
|
+
- webby/content/source/style.txt
|
236
|
+
- webby/content/source/utilities.txt
|
237
|
+
- webby/content/source/workbook.txt
|
238
|
+
- webby/content/source/worksheet.txt
|
239
|
+
- webby/content/surpass-manual.erb
|
240
|
+
- webby/layouts/book.txt
|
241
|
+
- webby/layouts/default.txt
|
242
|
+
- webby/layouts/two_column.txt
|
243
|
+
- webby/layouts/web.txt
|
244
|
+
- webby/output/.cairn
|
245
|
+
- webby/output/css/blueprint/ie.css
|
246
|
+
- webby/output/css/blueprint/plugins/buttons/icons/cross.png
|
247
|
+
- webby/output/css/blueprint/plugins/buttons/icons/key.png
|
248
|
+
- webby/output/css/blueprint/plugins/buttons/icons/tick.png
|
249
|
+
- webby/output/css/blueprint/plugins/buttons/readme.txt
|
250
|
+
- webby/output/css/blueprint/plugins/buttons/screen.css
|
251
|
+
- webby/output/css/blueprint/plugins/fancy-type/readme.txt
|
252
|
+
- webby/output/css/blueprint/plugins/fancy-type/screen.css
|
253
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/doc.png
|
254
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/email.png
|
255
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/external.png
|
256
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/feed.png
|
257
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/im.png
|
258
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/pdf.png
|
259
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/visited.png
|
260
|
+
- webby/output/css/blueprint/plugins/link-icons/icons/xls.png
|
261
|
+
- webby/output/css/blueprint/plugins/link-icons/readme.txt
|
262
|
+
- webby/output/css/blueprint/plugins/link-icons/screen.css
|
263
|
+
- webby/output/css/blueprint/plugins/rtl/readme.txt
|
264
|
+
- webby/output/css/blueprint/plugins/rtl/screen.css
|
265
|
+
- webby/output/css/blueprint/print.css
|
266
|
+
- webby/output/css/blueprint/screen.css
|
267
|
+
- webby/output/css/blueprint/src/forms.css
|
268
|
+
- webby/output/css/blueprint/src/grid.css
|
269
|
+
- webby/output/css/blueprint/src/grid.png
|
270
|
+
- webby/output/css/blueprint/src/ie.css
|
271
|
+
- webby/output/css/blueprint/src/print.css
|
272
|
+
- webby/output/css/blueprint/src/reset.css
|
273
|
+
- webby/output/css/blueprint/src/typography.css
|
274
|
+
- webby/output/css/pygments.css
|
275
|
+
- webby/output/css/site.css
|
276
|
+
- webby/output/css/style.css
|
277
|
+
- webby/output/examples/autoformat.png
|
278
|
+
- webby/output/examples/autoformat.rb
|
279
|
+
- webby/output/examples/autoformat.xls
|
280
|
+
- webby/output/examples/borders.png
|
281
|
+
- webby/output/examples/borders.rb
|
282
|
+
- webby/output/examples/borders.xls
|
283
|
+
- webby/output/examples/colours.png
|
284
|
+
- webby/output/examples/colours.rb
|
285
|
+
- webby/output/examples/colours.xls
|
286
|
+
- webby/output/examples/data.png
|
287
|
+
- webby/output/examples/data.rb
|
288
|
+
- webby/output/examples/data.xls
|
289
|
+
- webby/output/examples/formatting.png
|
290
|
+
- webby/output/examples/formatting.rb
|
291
|
+
- webby/output/examples/formatting.xls
|
292
|
+
- webby/output/examples/hello-world.png
|
293
|
+
- webby/output/examples/hello-world.py
|
294
|
+
- webby/output/examples/hello-world.rb
|
295
|
+
- webby/output/examples/hello-world.xls
|
296
|
+
- webby/output/examples/number-format-string.png
|
297
|
+
- webby/output/examples/number-format-string.rb
|
298
|
+
- webby/output/examples/number-format-string.xls
|
299
|
+
- webby/output/examples/patterns.png
|
300
|
+
- webby/output/examples/patterns.rb
|
301
|
+
- webby/output/examples/patterns.xls
|
302
|
+
- webby/output/examples/show-greens.sh
|
303
|
+
- webby/output/examples/surpass-info.sh
|
304
|
+
- webby/output/img/Thumbs.db
|
305
|
+
- webby/output/img/bg_menu.gif
|
306
|
+
- webby/output/img/bg_t.gif
|
307
|
+
- webby/output/img/bullet.gif
|
308
|
+
- webby/output/img/logo.png
|
309
|
+
- webby/output/img/logo_.jpg
|
310
|
+
- webby/output/img/top_bg.gif
|
311
|
+
- webby/output/img/top_bg_.gif
|
312
|
+
- webby/output/index.html
|
313
|
+
- webby/output/installation.html
|
314
|
+
- webby/output/installation/index.html
|
315
|
+
- webby/output/installation/installation.html
|
316
|
+
- webby/output/source/ExcelFormulaLexer.html
|
317
|
+
- webby/output/source/ExcelFormulaParser.html
|
318
|
+
- webby/output/source/biff_record.html
|
319
|
+
- webby/output/source/bitmap.html
|
320
|
+
- webby/output/source/cell.html
|
321
|
+
- webby/output/source/chart.html
|
322
|
+
- webby/output/source/column.html
|
323
|
+
- webby/output/source/document.html
|
324
|
+
- webby/output/source/excel_formula.html
|
325
|
+
- webby/output/source/excel_magic.html
|
326
|
+
- webby/output/source/formatting.html
|
327
|
+
- webby/output/source/row.html
|
328
|
+
- webby/output/source/style.html
|
329
|
+
- webby/output/source/surpass.html
|
330
|
+
- webby/output/source/utilities.html
|
331
|
+
- webby/output/source/workbook.html
|
332
|
+
- webby/output/source/worksheet.html
|
333
|
+
- webby/output/surpass-manual-0-0-5.pdf
|
334
|
+
- webby/output/surpass-manual.aux
|
335
|
+
- webby/output/surpass-manual.log
|
336
|
+
- webby/output/surpass-manual.out
|
337
|
+
- webby/output/surpass-manual.tex
|
338
|
+
- webby/output/surpass-manual.toc
|
339
|
+
- webby/rsync-exclude
|
340
|
+
- webby/tasks/latex.rake
|
341
|
+
- webby/tasks/screenshots.rb
|
342
|
+
- webby/templates/article.erb
|
343
|
+
- webby/templates/book.erb
|
344
|
+
- webby/templates/page.erb
|
69
345
|
has_rdoc: true
|
70
|
-
homepage:
|
346
|
+
homepage: http://surpass.rubyforge.org
|
347
|
+
licenses: []
|
348
|
+
|
71
349
|
post_install_message:
|
72
350
|
rdoc_options:
|
73
351
|
- --main
|
@@ -89,9 +367,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
367
|
requirements: []
|
90
368
|
|
91
369
|
rubyforge_project: surpass
|
92
|
-
rubygems_version: 1.3.
|
370
|
+
rubygems_version: 1.3.5
|
93
371
|
signing_key:
|
94
|
-
specification_version:
|
372
|
+
specification_version: 3
|
95
373
|
summary: Surpass is writing (and eventually reading) excel workbooks in pure Ruby
|
96
374
|
test_files: []
|
97
375
|
|
data/bin/surpass-info
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "rubygems"
|
4
|
-
require "surpass"
|
5
|
-
require 'optparse'
|
6
|
-
|
7
|
-
options = {}
|
8
|
-
OptionParser.new do |opts|
|
9
|
-
opts.banner = "Usage: surpass-info [options]"
|
10
|
-
|
11
|
-
opts.on("-c", "--colors", "List available colors") do |v|
|
12
|
-
puts Formatting::COLOURS.keys.sort
|
13
|
-
end
|
14
|
-
|
15
|
-
opts.on_tail("-h", "--help", "Show this message") do
|
16
|
-
puts opts
|
17
|
-
exit
|
18
|
-
end
|
19
|
-
|
20
|
-
end.parse!
|