pdf-rendering-srv-ruby 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/pdf_rendering_srv/base.rb +4 -0
- data/lib/pdf_rendering_srv/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75784a71d7c9c3dadfe557c45bcbfdad003a3f29cac012b5b62e642763175b9d
|
4
|
+
data.tar.gz: 8eb86d695c0e9100ddb62fe67813392820cece42593fb38e07d3ac1c6e5f5794
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0deb46cc1f4994ea851d08e4ffca8054f80fb6c59f7018ab5314b6397631349250fad2696834caa9bf35e7776545ad16db6d64ac2b8079e752dcf4e7c0a6596
|
7
|
+
data.tar.gz: 56fb03ac939e5308938cfc19d00aba247357a4887a81dc721f71c409f2f96f7a21d93d5e1a06c1047dfb3b9de8824c2eb6c4139bc361e2abddb9db78fd7fcd38
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -48,11 +48,15 @@ module PdfRenderingSrv
|
|
48
48
|
attribute? :pdf do
|
49
49
|
attribute? :scale, Types::Coercible::Float.optional
|
50
50
|
attribute? :print_background, Types::Bool.optional
|
51
|
+
attribute? :display_header_footer, Types::Bool.optional
|
52
|
+
attribute? :header_template, Types::String.optional
|
53
|
+
attribute? :footer_template, Types::String.optional
|
51
54
|
attribute? :landscape, Types::Bool.optional
|
52
55
|
attribute? :page_ranges, Types::Coercible::String.optional
|
53
56
|
attribute? :format, Types::Coercible::String.optional
|
54
57
|
attribute? :width, Types::Coercible::String.optional
|
55
58
|
attribute? :height, Types::Coercible::String.optional
|
59
|
+
attribute? :full_page, Types::Bool.optional
|
56
60
|
attribute? :margin do
|
57
61
|
attribute? :top, Types::Coercible::String.optional
|
58
62
|
attribute? :right, Types::Coercible::String.optional
|