pdf_matcher 2.1.0 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +12 -10
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/pdf_matcher/version.rb +1 -1
- data/pdf_matcher.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ac5a54cf936002cdbb8fe08c77e9d6efaa9f4ba2f8cad1e923e5d17807634f0
|
4
|
+
data.tar.gz: 564c3f2732ec1f014cc49f8617be731e6c26f19e531b15d848d6c18e20b7653e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf3ce95858ca3f4dba1d3f3f6002583a869fc5bf17e92141e2320bbf55d76839cf5603941019636f1932f7b5c7741c6c06ee681f5e6b690d08d50f70c4255c09
|
7
|
+
data.tar.gz: 160fca6ba03dceb3c155c35a7353d0dc70ce0b237195134a8862e763c0e36c0acaeaa6d182641209d6c6041de666b3475cf83e909f00cbfeb8ced13fc17b02ce
|
data/.github/workflows/test.yml
CHANGED
@@ -1,36 +1,38 @@
|
|
1
1
|
name: Test
|
2
2
|
|
3
|
-
on:
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
- 'dev**'
|
8
|
+
pull_request:
|
4
9
|
|
5
10
|
jobs:
|
6
11
|
test:
|
7
12
|
name: Test on ruby ${{ matrix.ruby_version }}
|
8
|
-
runs-on: ubuntu-latest
|
9
13
|
|
10
|
-
|
14
|
+
runs-on: ubuntu-latest
|
11
15
|
|
12
16
|
strategy:
|
13
17
|
matrix:
|
14
18
|
ruby_version:
|
15
|
-
- '2.7'
|
16
19
|
- '3.0'
|
17
20
|
- '3.1'
|
18
21
|
- '3.2'
|
22
|
+
- '3.3'
|
19
23
|
|
20
24
|
steps:
|
21
|
-
- uses: actions/checkout@
|
25
|
+
- uses: actions/checkout@v4
|
22
26
|
|
23
|
-
- uses: hidakatsuya/setup-diff-pdf@v1
|
27
|
+
- uses: hidakatsuya/action-setup-diff-pdf@v1
|
24
28
|
with:
|
25
|
-
diff-pdf-version: 0.5
|
29
|
+
diff-pdf-version: '0.5'
|
26
30
|
|
27
31
|
- name: Set up Ruby ${{ matrix.ruby_version }}
|
28
32
|
uses: ruby/setup-ruby@v1
|
29
33
|
with:
|
30
34
|
ruby-version: ${{ matrix.ruby_version }}
|
31
|
-
|
32
|
-
- name: Install dependencies
|
33
|
-
run: bundle install --jobs 4 --retry 3
|
35
|
+
bundler-cache: true
|
34
36
|
|
35
37
|
- name: Run Tests
|
36
38
|
run: xvfb-run -a bundle exec rake test
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/lib/pdf_matcher/version.rb
CHANGED
data/pdf_matcher.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.description = 'PdfMatcher is a gem to compare two PDFs and output the differences using diff-pdf'
|
11
11
|
spec.homepage = 'https://github.com/hidakatsuya/pdf_matcher'
|
12
12
|
spec.license = 'MIT'
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new('>=
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
|
14
14
|
|
15
15
|
spec.metadata['homepage_uri'] = spec.homepage
|
16
16
|
spec.metadata['source_code_uri'] = spec.homepage
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pdf_matcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katsuya Hidaka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: PdfMatcher is a gem to compare two PDFs and output the differences using
|
14
14
|
diff-pdf
|
@@ -48,14 +48,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
48
|
requirements:
|
49
49
|
- - ">="
|
50
50
|
- !ruby/object:Gem::Version
|
51
|
-
version:
|
51
|
+
version: 3.0.0
|
52
52
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: '0'
|
57
57
|
requirements: []
|
58
|
-
rubygems_version: 3.
|
58
|
+
rubygems_version: 3.4.6
|
59
59
|
signing_key:
|
60
60
|
specification_version: 4
|
61
61
|
summary: A gem to compare two PDFs and output the differences using diff-pdf
|