ruport 0.4.21 → 0.4.23
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +25 -1
- data/Rakefile +4 -3
- data/TODO +5 -16
- data/bin/rope +116 -0
- data/examples/bar.pdf +193 -0
- data/examples/f.log +5 -0
- data/examples/foo.pdf +193 -0
- data/examples/sample_invoice_report.rb +32 -0
- data/lib/ruport.rb +1 -1
- data/lib/ruport/data/collection.rb +5 -0
- data/lib/ruport/data/table.rb +16 -6
- data/lib/ruport/format.rb +1 -1
- data/lib/ruport/format/engine.rb +9 -7
- data/lib/ruport/format/plugin.rb +52 -38
- data/lib/ruport/query.rb +4 -4
- data/lib/ruport/report.rb +1 -1
- data/lib/ruport/report/invoice.rb +13 -0
- data/test/tc_format_engine.rb +1 -1
- data/test/tc_invoice.rb +26 -0
- data/test/tc_table.rb +29 -0
- data/test/ts_all.rb +1 -2
- data/test/unit.log +276 -0
- metadata +12 -4
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ruport
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.4.
|
7
|
-
date: 2006-08-
|
6
|
+
version: 0.4.23
|
7
|
+
date: 2006-08-10 00:00:00 -04:00
|
8
8
|
summary: A generalized Ruby report generation and templating engine.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -37,6 +37,10 @@ files:
|
|
37
37
|
- examples/report.rb
|
38
38
|
- examples/simple_mail.rb
|
39
39
|
- examples/template.rb
|
40
|
+
- examples/f.log
|
41
|
+
- examples/sample_invoice_report.rb
|
42
|
+
- examples/foo.pdf
|
43
|
+
- examples/bar.pdf
|
40
44
|
- lib/ruport
|
41
45
|
- lib/ruport.rb
|
42
46
|
- lib/uport.rb
|
@@ -44,6 +48,7 @@ files:
|
|
44
48
|
- lib/ruport/format
|
45
49
|
- lib/ruport/rails
|
46
50
|
- lib/ruport/data
|
51
|
+
- lib/ruport/report
|
47
52
|
- lib/ruport/system_extensions.rb
|
48
53
|
- lib/ruport/config.rb
|
49
54
|
- lib/ruport/query.rb
|
@@ -64,6 +69,7 @@ files:
|
|
64
69
|
- lib/ruport/data/record.rb
|
65
70
|
- lib/ruport/data/collection.rb
|
66
71
|
- lib/ruport/data/set.rb
|
72
|
+
- lib/ruport/report/invoice.rb
|
67
73
|
- test/samples
|
68
74
|
- test/tc_element.rb
|
69
75
|
- test/tc_format.rb
|
@@ -83,6 +89,7 @@ files:
|
|
83
89
|
- test/unit.log
|
84
90
|
- test/tc_document.rb
|
85
91
|
- test/tc_data_set.rb
|
92
|
+
- test/tc_invoice.rb
|
86
93
|
- test/tc_taggable.rb
|
87
94
|
- test/tc_record.rb
|
88
95
|
- test/tc_table.rb
|
@@ -94,6 +101,7 @@ files:
|
|
94
101
|
- test/samples/addressbook.csv
|
95
102
|
- test/samples/document.xml
|
96
103
|
- test/samples/test.sql
|
104
|
+
- bin/rope
|
97
105
|
- Rakefile
|
98
106
|
- setup.rb
|
99
107
|
- README
|
@@ -115,8 +123,8 @@ extra_rdoc_files:
|
|
115
123
|
- TODO
|
116
124
|
- AUTHORS
|
117
125
|
- CHANGELOG
|
118
|
-
executables:
|
119
|
-
|
126
|
+
executables:
|
127
|
+
- rope
|
120
128
|
extensions: []
|
121
129
|
|
122
130
|
requirements: []
|