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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b25a11b945dc8e7518398bde01819aa6c7c938eb55d0a337c2ab96d8a39acd6
4
- data.tar.gz: c8bf17486d738bd1860f9aef05130e1c8937ebe7e64f223ac01730c2f5261235
3
+ metadata.gz: 3ac5a54cf936002cdbb8fe08c77e9d6efaa9f4ba2f8cad1e923e5d17807634f0
4
+ data.tar.gz: 564c3f2732ec1f014cc49f8617be731e6c26f19e531b15d848d6c18e20b7653e
5
5
  SHA512:
6
- metadata.gz: f3b37821e911c44dd6fecb67c7a27bff348ad857e34e358f06a26501267a8d5298fd457bbdebb4e7c442fcb6d26f7bdffa9e11adb55154ee7c018a7394696001
7
- data.tar.gz: b2b96542029235f9e6a95316660a3faa596477e208d3c082957e35e86bc519197b5ec6988eb3a6f849b4a4137c499696fcd7f1f5e0e91e316f1924db0ee3df4e
6
+ metadata.gz: cf3ce95858ca3f4dba1d3f3f6002583a869fc5bf17e92141e2320bbf55d76839cf5603941019636f1932f7b5c7741c6c06ee681f5e6b690d08d50f70c4255c09
7
+ data.tar.gz: 160fca6ba03dceb3c155c35a7353d0dc70ce0b237195134a8862e763c0e36c0acaeaa6d182641209d6c6041de666b3475cf83e909f00cbfeb8ced13fc17b02ce
@@ -1,36 +1,38 @@
1
1
  name: Test
2
2
 
3
- on: [push, pull_request]
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
- if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
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@v3
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
@@ -1,3 +1,11 @@
1
+ ## main (Unreleased)
2
+
3
+ ## 2.2.0
4
+
5
+ ### Changes
6
+
7
+ - Drop Ruby2.7 support
8
+
1
9
  ## 2.1.0
2
10
 
3
11
  ### Changes
data/README.md CHANGED
@@ -15,7 +15,7 @@ Note that you can install it with [hidakatsuya/setup-diff-pdf](https://github.co
15
15
 
16
16
  ### Supported Ruby Versions
17
17
 
18
- 2.7, 3.0, 3.1, 3.2
18
+ 3.0, 3.1, 3.2, 3.3
19
19
 
20
20
  ## Installation
21
21
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PdfMatcher
4
- VERSION = '2.1.0'
4
+ VERSION = '2.2.0'
5
5
  end
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('>= 2.7.0')
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.1.0
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-02-12 00:00:00.000000000 Z
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: 2.7.0
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.1.6
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