pdfmonkey 0.8.1 → 0.9.0
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 +4 -4
- data/.github/dependabot.yml +20 -0
- data/.github/workflows/ci.yml +25 -5
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +18 -16
- data/lib/pdfmonkey/version.rb +1 -1
- data/pdfmonkey.gemspec +2 -0
- metadata +18 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fe16723c65c8ec16e6436a54fe172f703ac80ca9179c2742fdcf8c0eefedba7
|
|
4
|
+
data.tar.gz: 010ea3163095477fe44589a51211ae5cd284a1f88c55bb4186002d4014902f4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f2c3974bc32769ea21190fb7731d6a0c2bb08d6863f6d377bf4ca5fb0ea55d200235c7ebeba81cd9018e571eebb252c6e73774f821e8991eeb197662096e3cd
|
|
7
|
+
data.tar.gz: 30ac1caeb3a3839f5d0e0da4f3cb1605f929055ac900e7232960dd30279dcc3e33bb6da433ea571b775a85b9e9950a6ce52702bc1bdd217191d1a35b49d59db0
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
updates:
|
|
4
|
+
- package-ecosystem: bundler
|
|
5
|
+
directory: /
|
|
6
|
+
open-pull-requests-limit: 10
|
|
7
|
+
schedule:
|
|
8
|
+
interval: weekly
|
|
9
|
+
day: monday
|
|
10
|
+
time: '00:00'
|
|
11
|
+
target-branch: master
|
|
12
|
+
versioning-strategy: increase-if-necessary
|
|
13
|
+
|
|
14
|
+
- package-ecosystem: github-actions
|
|
15
|
+
directory: /
|
|
16
|
+
schedule:
|
|
17
|
+
interval: weekly
|
|
18
|
+
day: monday
|
|
19
|
+
time: '00:00'
|
|
20
|
+
target-branch: master
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -9,15 +9,35 @@ jobs:
|
|
|
9
9
|
strategy:
|
|
10
10
|
fail-fast: false
|
|
11
11
|
matrix:
|
|
12
|
-
ruby: ['2.6', '2.7', '3.0', '3.1']
|
|
13
12
|
include:
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
- ruby: '2.6'
|
|
14
|
+
bundler: 2.2.30
|
|
15
|
+
- ruby: '2.7'
|
|
16
|
+
bundler: 2.2.30
|
|
17
|
+
- ruby: '3.0'
|
|
18
|
+
bundler: 2.2.30
|
|
19
|
+
- ruby: '3.1'
|
|
20
|
+
bundler: 2.6.3
|
|
21
|
+
- ruby: '3.2'
|
|
22
|
+
bundler: 2.6.3
|
|
23
|
+
- ruby: '3.3'
|
|
24
|
+
bundler: 2.6.3
|
|
25
|
+
- ruby: '3.4'
|
|
26
|
+
bundler: 2.6.3
|
|
27
|
+
- ruby: head
|
|
28
|
+
bundler: 2.6.3
|
|
29
|
+
experimental: true
|
|
16
30
|
steps:
|
|
17
|
-
- uses: actions/checkout@
|
|
31
|
+
- uses: actions/checkout@v4
|
|
32
|
+
|
|
18
33
|
- uses: ruby/setup-ruby@v1
|
|
19
34
|
with:
|
|
20
35
|
ruby-version: ${{matrix.ruby}}
|
|
36
|
+
bundler: ${{matrix.bundler}}
|
|
21
37
|
bundler-cache: true
|
|
38
|
+
|
|
39
|
+
- name: Install gems
|
|
40
|
+
run: bundle _${{matrix.bundler}}_ install
|
|
41
|
+
|
|
22
42
|
- name: Run specs
|
|
23
|
-
run: bundle exec rspec
|
|
43
|
+
run: bundle _${{matrix.bundler}}_ exec rspec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 0.9.0
|
|
6
|
+
|
|
7
|
+
* Testing against Ruby 3.2, 3.3 and 3.4
|
|
8
|
+
* Adding a Dependabot configuration file
|
|
9
|
+
* Adding ostruct as a runtime dependency in preparation of Ruby 3.5
|
|
10
|
+
* Bumping rake from 13.0.6 to 13.2.1
|
|
11
|
+
* Bumping rexml from 3.2.5 to 3.3.9
|
|
12
|
+
* Bumping rspec from 3.11 to 3.13
|
|
13
|
+
* Bumping actions/checkout from 3 to 4
|
|
14
|
+
|
|
3
15
|
## 0.8.1
|
|
4
16
|
|
|
5
17
|
* Fixing the handling of validation errors to expose errors correctly
|
data/Gemfile.lock
CHANGED
|
@@ -1,33 +1,35 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pdfmonkey (0.
|
|
4
|
+
pdfmonkey (0.9.0)
|
|
5
|
+
ostruct (>= 0.6.0)
|
|
5
6
|
|
|
6
7
|
GEM
|
|
7
8
|
remote: https://rubygems.org/
|
|
8
9
|
specs:
|
|
9
10
|
ast (2.4.2)
|
|
10
|
-
diff-lcs (1.5.
|
|
11
|
+
diff-lcs (1.5.1)
|
|
12
|
+
ostruct (0.6.1)
|
|
11
13
|
parallel (1.22.0)
|
|
12
14
|
parser (3.1.1.0)
|
|
13
15
|
ast (~> 2.4.1)
|
|
14
16
|
rainbow (3.1.1)
|
|
15
|
-
rake (13.
|
|
17
|
+
rake (13.2.1)
|
|
16
18
|
regexp_parser (2.2.1)
|
|
17
|
-
rexml (3.
|
|
18
|
-
rspec (3.
|
|
19
|
-
rspec-core (~> 3.
|
|
20
|
-
rspec-expectations (~> 3.
|
|
21
|
-
rspec-mocks (~> 3.
|
|
22
|
-
rspec-core (3.
|
|
23
|
-
rspec-support (~> 3.
|
|
24
|
-
rspec-expectations (3.
|
|
19
|
+
rexml (3.3.9)
|
|
20
|
+
rspec (3.13.0)
|
|
21
|
+
rspec-core (~> 3.13.0)
|
|
22
|
+
rspec-expectations (~> 3.13.0)
|
|
23
|
+
rspec-mocks (~> 3.13.0)
|
|
24
|
+
rspec-core (3.13.2)
|
|
25
|
+
rspec-support (~> 3.13.0)
|
|
26
|
+
rspec-expectations (3.13.3)
|
|
25
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
26
|
-
rspec-support (~> 3.
|
|
27
|
-
rspec-mocks (3.
|
|
28
|
+
rspec-support (~> 3.13.0)
|
|
29
|
+
rspec-mocks (3.13.2)
|
|
28
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
29
|
-
rspec-support (~> 3.
|
|
30
|
-
rspec-support (3.
|
|
31
|
+
rspec-support (~> 3.13.0)
|
|
32
|
+
rspec-support (3.13.2)
|
|
31
33
|
rubocop (1.26.0)
|
|
32
34
|
parallel (~> 1.10)
|
|
33
35
|
parser (>= 3.1.0.0)
|
|
@@ -53,4 +55,4 @@ DEPENDENCIES
|
|
|
53
55
|
rubocop (~> 1.26)
|
|
54
56
|
|
|
55
57
|
BUNDLED WITH
|
|
56
|
-
2.
|
|
58
|
+
2.6.3
|
data/lib/pdfmonkey/version.rb
CHANGED
data/pdfmonkey.gemspec
CHANGED
|
@@ -22,6 +22,8 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
|
|
25
|
+
spec.add_runtime_dependency 'ostruct', '>= 0.6.0'
|
|
26
|
+
|
|
25
27
|
spec.add_development_dependency 'bundler', '~> 2.2'
|
|
26
28
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
27
29
|
spec.add_development_dependency 'rspec', '~> 3.8'
|
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pdfmonkey
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Courtois
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: ostruct
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.6.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.6.0
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: bundler
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -73,6 +87,7 @@ executables: []
|
|
|
73
87
|
extensions: []
|
|
74
88
|
extra_rdoc_files: []
|
|
75
89
|
files:
|
|
90
|
+
- ".github/dependabot.yml"
|
|
76
91
|
- ".github/workflows/ci.yml"
|
|
77
92
|
- ".gitignore"
|
|
78
93
|
- ".rspec"
|
|
@@ -111,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
126
|
- !ruby/object:Gem::Version
|
|
112
127
|
version: '0'
|
|
113
128
|
requirements: []
|
|
114
|
-
rubygems_version: 3.
|
|
129
|
+
rubygems_version: 3.4.21
|
|
115
130
|
signing_key:
|
|
116
131
|
specification_version: 4
|
|
117
132
|
summary: Connect to the PDFMonkey API
|