rghost 0.9.8 → 0.9.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19399799fab0577cd7192fd7c08c030acc1cbce6a237d81158555b1bc71b3a8a
4
- data.tar.gz: a8e7c939a8f5cd63d5a62096711bc4d947ec6deea1d9d0d6d4275d75f08ee0e1
3
+ metadata.gz: f987c8d8137c7bf5c3c25f99d784bf7eab043eafe6d75cc555be31d2d444dced
4
+ data.tar.gz: 578708ca6343315a510a939493b6d36db220eb126850baac4b28c25258288135
5
5
  SHA512:
6
- metadata.gz: '092afe79c88d1a74538ed47f4894297f153ed45ad9f90c2f744776cab6c717bd30d69cbf7eb94e41122becd93d495f74fb06d78a7bbcc2a606aba014d41f4490'
7
- data.tar.gz: 851f4c27ac2cc91577d7bda43ceea0af49524f0dfb8941db3d6d97a27d9558c03c00db8cf5c4f7bed528939415e7353f95a3e5b425b3ea3012d160f18c1fcf8b
6
+ metadata.gz: fccef573211c6f2eef152fbac96afe99a92a510287b42017ad8fae07394c4c386595c8c70cc7e7f21301d01b5974aa44caac7b314fc9dabe30c6f6f7fe16766f
7
+ data.tar.gz: f1753e3fd389841b281f89cb1a03e67aba0e669709e9addbd0540c20d0b41398b1f8b0960e27417fb6cb9d4d6883fbca1e71f02f20d5bfd985ef7007fd0e3535
data/lib/rghost.rb CHANGED
@@ -6,13 +6,12 @@ module RGhost
6
6
  class RenderException < Exception; end
7
7
  end
8
8
 
9
- require 'rghost/ruby_ghost_version'
10
9
  require 'rghost/ps_object'
11
10
  require 'rghost/variable'
12
11
  require 'rghost/ps_facade'
13
12
  require 'rghost/function'
14
13
  require 'rghost/document'
15
- require 'rghost/grid/grid'
14
+ require 'rghost/grid/grid'
16
15
  RGhost::Config::GS[:PATH]="/opt/local/bin/gs"
17
16
 
18
17
 
metadata CHANGED
@@ -1,18 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rghost
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shairon Toledo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-24 00:00:00.000000000 Z
11
+ date: 2024-03-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Ruby Ghostscript Engine is a document creation and conversion API, support(PDF,PS,GIF,TIF,PNG,JPG...).
14
- It uses the GhostScript framework for the format conversion, utilizes EPS templates
15
- and is optimized to work with larger documents.
13
+ description: Ruby Ghostscript Engine is a document creation and conversion API, supporting
14
+ PDF, PS, GIF, TIF, PNG, JPG… It uses the GhostScript framework for format conversion,
15
+ utilizes EPS templates, and is optimized to work with larger documents.
16
16
  email: shairon.toledo@gmail.com
17
17
  executables: []
18
18
  extensions: []
@@ -134,7 +134,6 @@ files:
134
134
  - lib/rghost/rectangle_link.rb
135
135
  - lib/rghost/ruby_ghost_config.rb
136
136
  - lib/rghost/ruby_ghost_engine.rb
137
- - lib/rghost/ruby_ghost_version.rb
138
137
  - lib/rghost/ruby_to_ps.rb
139
138
  - lib/rghost/scale.rb
140
139
  - lib/rghost/shape_content.rb
@@ -148,7 +147,7 @@ files:
148
147
  - lib/rghost/variable.rb
149
148
  - lib/rghost/vertical_line.rb
150
149
  - lib/rghost/virtual_pages.rb
151
- homepage: http://rghost.rubyforge.org
150
+ homepage: https://github.com/shairontoledo/rghost
152
151
  licenses: []
153
152
  metadata: {}
154
153
  post_install_message:
@@ -169,5 +168,6 @@ requirements: []
169
168
  rubygems_version: 3.2.32
170
169
  signing_key:
171
170
  specification_version: 4
172
- summary: Ruby Ghostscript Engine is a document creation and conversion API, support(PDF,PS,GIF,TIF,PNG,JPG...).
171
+ summary: Ruby Ghostscript Engine is a document creation and conversion API, supporting
172
+ PDF, PS, GIF, TIF, PNG, JPG…
173
173
  test_files: []
@@ -1,8 +0,0 @@
1
- module RGhost::VERSION #:nodoc:
2
- MAJOR = 0
3
- MINOR = 8
4
- TINY = 7
5
- DATE=1244286414
6
- STRING = [MAJOR, MINOR, TINY].join('.')
7
-
8
- end