rghost 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +1 -1
- data/Manifest.txt +7 -7
- data/lib/rghost/document.rb +2 -1
- data/lib/rghost/ruby_ghost_config.rb +1 -1
- data/lib/rghost/version.rb +1 -1
- metadata +8 -8
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
@@ -13,8 +13,9 @@ website/index.txt
|
|
13
13
|
website/javascripts/rounded_corners_lite.inc.js
|
14
14
|
website/stylesheets/screen.css
|
15
15
|
website/template.rhtml
|
16
|
-
lib
|
16
|
+
lib
|
17
17
|
lib/rghost
|
18
|
+
lib/rghost/version.rb
|
18
19
|
lib/rghost/vertical_line.rb
|
19
20
|
lib/rghost/graphic.rb
|
20
21
|
lib/rghost/color.rb
|
@@ -85,16 +86,15 @@ lib/rghost/textarea.rb
|
|
85
86
|
lib/rghost/variable.rb
|
86
87
|
lib/rghost/show.rb
|
87
88
|
lib/rghost/image.rb
|
88
|
-
lib/rghost/
|
89
|
+
lib/rghost/dsc_entry.rb
|
89
90
|
lib/rghost/line.rb
|
90
91
|
lib/rghost/scale.rb
|
91
|
-
lib/rghost/
|
92
|
-
lib/rghost/
|
93
|
-
lib/rghost/rectangle.rb
|
92
|
+
lib/rghost/newpath.rb
|
93
|
+
lib/rghost/arc.rb
|
94
94
|
lib/rghost/dynamic_document_callback.rb
|
95
95
|
lib/rghost/static_document_callback.rb
|
96
|
-
lib/rghost/
|
97
|
-
lib/rghost/
|
96
|
+
lib/rghost/helpers.rb
|
97
|
+
lib/rghost/rectangle.rb
|
98
98
|
lib/rghost/ps_object.rb
|
99
99
|
lib/rghost/ruby_ghost_config.rb
|
100
100
|
lib/rghost/ruby_ghost_engine.rb
|
data/lib/rghost/document.rb
CHANGED
@@ -37,6 +37,7 @@ require "barcode"
|
|
37
37
|
require "convert"
|
38
38
|
|
39
39
|
|
40
|
+
|
40
41
|
#Document � a classe que centraliza a estrutura do documento
|
41
42
|
class Document < PsObject
|
42
43
|
DEFAULT_OPTIONS={
|
@@ -66,7 +67,7 @@ class Document < PsObject
|
|
66
67
|
#
|
67
68
|
#
|
68
69
|
def initialize(options={},&block)
|
69
|
-
super("
|
70
|
+
super("")
|
70
71
|
@head,@callbacks=PsObject.new,PsObject.new
|
71
72
|
@head.set Load.library(:type)
|
72
73
|
@head.set Load.library(:unit)
|
@@ -8,7 +8,7 @@ module RubyGhostConfig
|
|
8
8
|
:tmpdir => ENV["TMP"] || ENV["TMPDIR"] || ENV["TEMPDIR"] || ENV["TEMP"] || "/tmp",
|
9
9
|
:pslibdir => File.dirname(__FILE__)+File::SEPARATOR+"ps",
|
10
10
|
:default_params=> %w(gs -dNOPAUSE -dBATCH -dQUIET -dNOPAGEPROMPT),
|
11
|
-
:stack_elements =>
|
11
|
+
:stack_elements => 5000,
|
12
12
|
:unit => Units::Cm
|
13
13
|
}
|
14
14
|
|
data/lib/rghost/version.rb
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rghost
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.6.
|
7
|
-
date: 2007-06-
|
6
|
+
version: 0.6.6
|
7
|
+
date: 2007-06-11 00:00:00 -03:00
|
8
8
|
summary: description of gem
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -44,7 +44,7 @@ files:
|
|
44
44
|
- website/javascripts/rounded_corners_lite.inc.js
|
45
45
|
- website/stylesheets/screen.css
|
46
46
|
- website/template.rhtml
|
47
|
-
- lib
|
47
|
+
- lib
|
48
48
|
- lib/rghost
|
49
49
|
- lib/rghost/vertical_line.rb
|
50
50
|
- lib/rghost/graphic.rb
|
@@ -116,15 +116,15 @@ files:
|
|
116
116
|
- lib/rghost/variable.rb
|
117
117
|
- lib/rghost/show.rb
|
118
118
|
- lib/rghost/image.rb
|
119
|
+
- lib/rghost/dsc_entry.rb
|
119
120
|
- lib/rghost/line.rb
|
120
121
|
- lib/rghost/scale.rb
|
121
|
-
- lib/rghost/
|
122
|
-
- lib/rghost/
|
123
|
-
- lib/rghost/rectangle.rb
|
122
|
+
- lib/rghost/newpath.rb
|
123
|
+
- lib/rghost/arc.rb
|
124
124
|
- lib/rghost/dynamic_document_callback.rb
|
125
125
|
- lib/rghost/static_document_callback.rb
|
126
|
-
- lib/rghost/
|
127
|
-
- lib/rghost/
|
126
|
+
- lib/rghost/helpers.rb
|
127
|
+
- lib/rghost/rectangle.rb
|
128
128
|
- lib/rghost/ps_object.rb
|
129
129
|
- lib/rghost/ruby_ghost_config.rb
|
130
130
|
- lib/rghost/ruby_ghost_engine.rb
|