tilt-prawn 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f834300538204e2b38ac214dc4521c744e7959f9
4
+ data.tar.gz: d11db0cf35b829d8fe9d816019efa2c84f13dc47
5
+ SHA512:
6
+ metadata.gz: 1149556ba66caa439e5647b120f6b6702285079040c2a3d427680252da88621760cc45e6801e2d59b0d23a9634542492c92369ad3cdeedc7512bdba8498eafbf
7
+ data.tar.gz: 60788fbccc796a919099c18f4ec0c180e97a9633668d3a774516ae4da8a8cb631e17946c9605d3d13a24e3197dd84f1139d4cdd0d0fe73d7af1d0adb6733025d
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (C) 2014 Benjamin Feng
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,5 @@
1
+ module Tilt
2
+ module Prawn
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
data/lib/tilt/prawn.rb ADDED
@@ -0,0 +1,48 @@
1
+ require 'tilt'
2
+ require 'prawn'
3
+ require 'tilt/prawn/version'
4
+
5
+ module Tilt
6
+ class PrawnTemplate < Template
7
+ self.default_mime_type = 'application/pdf'
8
+
9
+ def self.engine_initialized?
10
+ defined? ::Prawn::Document
11
+ end
12
+
13
+ def initialize_engine
14
+ require_template_library 'prawn'
15
+ end
16
+
17
+ def prepare
18
+ end
19
+
20
+ def evaluate(scope, locals, &block)
21
+ doc = ::Prawn::Document.new do |pdf|
22
+ if data.respond_to?(:call)
23
+ scope = scope.dup # preserve scope object on caller
24
+ locals.each do |key, val|
25
+ scope.define_singleton_method(key) { val }
26
+ end
27
+ scope.instance_exec(pdf, &data)
28
+ else
29
+ context = scope.instance_eval { binding }
30
+ if context.respond_to?(:local_variable_set)
31
+ locals.each do |key, val|
32
+ context.local_variable_set(key, val)
33
+ end
34
+ else
35
+ locals.each do |key, val|
36
+ # Wow, what a hack
37
+ context.eval("#{key} = #{val.inspect}")
38
+ end
39
+ end
40
+ context.eval(data)
41
+ end
42
+ end
43
+ doc.render
44
+ end
45
+ end
46
+
47
+ register PrawnTemplate, 'prawn'
48
+ end
data/lib/tilt-prawn.rb ADDED
@@ -0,0 +1 @@
1
+ require 'tilt/prawn'
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tilt-prawn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Benjamin Feng
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: tilt
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: prawn
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pdf-reader
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.10'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.10'
83
+ description: tilt-prawn integrates prawn with tilt
84
+ email: contact@fengb.info
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - LICENSE
90
+ - lib/tilt-prawn.rb
91
+ - lib/tilt/prawn.rb
92
+ - lib/tilt/prawn/version.rb
93
+ homepage:
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.2.2
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: tilt-prawn integrates prawn with tilt
117
+ test_files: []