breezy_pdf 0.0.1 → 0.0.4

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
- SHA1:
3
- metadata.gz: 51ab1fda7ecf5c352d77df5fc07e2ba2e9b4116c
4
- data.tar.gz: 1e80909046b6fe970e499abc0ac0ed0cbad88e1a
2
+ SHA256:
3
+ metadata.gz: c039af53793d24c3646681172dd3ae604ec5a4af7faccd96d314b20a20191679
4
+ data.tar.gz: 327415ff623e491e390b120052aacc971c95e6b9d9c12ff534bf988a9d9b4fa7
5
5
  SHA512:
6
- metadata.gz: 2861c609191489fb38d112d8f495e37b38ccd0fbc803c2afc1b84a43a60fb0568686535e7e17f6542cb3b75694754b33f639e6801981672dcb88c3aab589fd66
7
- data.tar.gz: 287fcee5ebd2fdf7ac0f6a87e1717abda8586deeaa24b3082778d0fb6fca8ccf4b803cbd9b200d994431226e392eb330f20399a3259ebd6b3e36303e425b68b4
6
+ metadata.gz: dd704725ed9db506d8c9e85f29edb485bd154d9db5a634a7a601a3aa1a62132f15950285637e0c49fc47a59a938e65ba9cfadc889823a61dcb862bc8aa4b9ab7
7
+ data.tar.gz: b7a812d2b38517f361b64fc9fce9f0ee2b09e5fb75d661c94a1454abda477ae6a31b30e3ae9cb5923e1bb27c5202b59f98f390984f03e79c93cb436a5f811cb9
data/.travis.yml CHANGED
@@ -1,6 +1,14 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.4.2
5
- - 2.5.0
4
+ - 2.4.2
5
+ - 2.5.0
6
6
  before_install: gem install bundler -v 1.16.0
7
+ deploy:
8
+ provider: rubygems
9
+ api_key:
10
+ secure: DnR2ATZg+zPHocfZwSkMn5nWpBVdS/JdWgRfIq1uFjob4zeP+0UPSbTZmrJt3GJYEUxsneyhv2bwtB+9nxgRaPVB3MuxXPAQxBilVwbKNQuqdK348jdgzlLskBGTu7LGJeh6V9VyBVRlGZNptIrhflw6tnSwK2AfvQEkObnNGiaONauA01lZGW6fDgMBwaSenCKSifNiiZ8vuH0O0fCgObYy4olxwoIs4HpprJhXnEYu+OkYe7gVDF+COj/g41UxiC3t3RwAZ3ly2Y6bOM7+BBLTgqQnR/K68QpwS5j2i9IPGaoeG+vY0V9a8fTL2pJVF1TYyLqFHK8hqijo9RAWAckJx7UlmisserO7bxIfS0Td/up8jMisPvDELswFRRIGt6pNzgnfO8S1cIRx/TivBmv+nRxbicNLV+MVpLwcyIpfLhydgpYnH8anzvkOJELKSaV7O3MKftDY4jKfO6aa8YemXvpY9OGVTNvOm9bUypkus8dRvbIj5GyNe+gvlithf9ikeZzOL9Z99PuoLWRbMrqDK2drQWVjZaikZlN/q0vJ6pXK511H+QWiX5Hc37b4C1LLDjtUTkJeFW0EN8YnYtJQzP740jYhC60jPYTaF/oXJEHUbG2FC/QCQ20LwyAlpqtFEFiXErA4gUI0m83tq+ew20ueVFSMjASLyuB1/Z8=
11
+ gem: breezy_pdf
12
+ on:
13
+ tags: true
14
+ repo: danielwestendorf/breezy_pdf-ruby
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- breezy_pdf (0.0.1)
4
+ breezy_pdf (0.0.4)
5
5
  concurrent-ruby
6
6
  nokogiri
7
7
 
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # BreezyPDF
2
2
 
3
+ [![Build Status](https://travis-ci.org/danielwestendorf/breezy_pdf-ruby.svg?branch=master)](https://travis-ci.org/danielwestendorf/breezy_pdf-ruby) [![Gem Version](https://badge.fury.io/rb/breezy_pdf.svg)](https://badge.fury.io/rb/breezy_pdf)
4
+
3
5
  Make PDF generation a breezy-easy.
4
6
 
5
7
  No binaries to install. No reinventing the wheel to match HTML layouts. Just simple HTML to PDF generation as a Rack Middleware with support for modern CSS and JavaScript. `.pdf` any of your app's URL's for fast, out-of-process, PDF generation of that URL. Support for public and authenticated views, local development and production.
data/breezy_pdf.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.summary = "Ruby client for BreezyPDF.com"
15
15
  spec.description = "Client and Rack Middlware which submits URL's and HTML fragments to " \
16
16
  "be rendered as a PDF"
17
- spec.homepage = "https://www.breezypdf.com"
17
+ spec.homepage = "https://breezypdf.com"
18
18
  spec.license = "LGPL-3.0"
19
19
 
20
20
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BreezyPDF
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: breezy_pdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Westendorf
@@ -164,7 +164,7 @@ files:
164
164
  - lib/breezy_pdf/util.rb
165
165
  - lib/breezy_pdf/version.rb
166
166
  - test.html
167
- homepage: https://www.breezypdf.com
167
+ homepage: https://breezypdf.com
168
168
  licenses:
169
169
  - LGPL-3.0
170
170
  metadata: {}
@@ -184,7 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
184
  version: '0'
185
185
  requirements: []
186
186
  rubyforge_project:
187
- rubygems_version: 2.6.13
187
+ rubygems_version: 2.7.6
188
188
  signing_key:
189
189
  specification_version: 4
190
190
  summary: Ruby client for BreezyPDF.com