hatenablog_publisher 0.3.0 → 0.4.1

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
2
  SHA256:
3
- metadata.gz: 1c3040d39a5be46c7a7e2dcf5fd7ee32b0b598e6b784924f455260173b8d4743
4
- data.tar.gz: 30370641aa5797c6f77b4a63e12a68fea0fdd4083dad15ae20a5a90cc0ffbfba
3
+ metadata.gz: 33d03e178b12968b49d1131c76d03927580cf516ddf922d82b0d6052047b9056
4
+ data.tar.gz: 1d1245b5733967e7c9aae579e1e8c008fc4292b6bc4d07b59e8fea8d9d5c8a6b
5
5
  SHA512:
6
- metadata.gz: 99bd3e7df86ca28647270467861be3b61899a45c16abdc537e638618482b38c8938493ee8eb4845ddfae1a5efca130f626938f12ea195cc19638f716a04805a4
7
- data.tar.gz: 18f8e3f072782ed1df829261378bfa3499873bbb6a373fe4387f226e7a81e0e7808151a32fb5d7f0613f4fb0b3062e1d5d3ed4c4948d2ff9c273ab8174edc9e4
6
+ metadata.gz: 013b6465fa07c848c9bb60b4e93b9bf34bc068ef7f1d459e2d0ade0f44ad257a49a32a34d697b4c7c08016de38953cf921057881c473d9bdf711445687e5390f
7
+ data.tar.gz: de1d0cf44cbc46cfa541bd58d56619b9dad08b97e9bd8a6883a4aa2b62d74c22c3a99eec244e507c750563e9edcd35a85ce21ef2832be3df0748206458185a6c
@@ -0,0 +1,4 @@
1
+ changelog:
2
+ exclude:
3
+ labels:
4
+ - tagpr
@@ -10,13 +10,13 @@ jobs:
10
10
  strategy:
11
11
  fail-fast: false
12
12
  matrix:
13
- ruby-version: ['2.6', '2.7', '3.0', '3.1']
13
+ ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
14
14
  steps:
15
- - uses: actions/checkout@v3.0.2
15
+ - uses: actions/checkout@v3.3.0
16
16
  - uses: ruby/setup-ruby@v1
17
17
  with:
18
18
  ruby-version: ${{ matrix.ruby-version }}
19
- - uses: actions/cache@v3.0.2
19
+ - uses: actions/cache@v3.2.3
20
20
  with:
21
21
  path: vendor/bundle
22
22
  key: ${{ runner.os }}-gems-${{ hashFiles('./Gemfile.lock') }}
@@ -41,14 +41,10 @@ jobs:
41
41
  runs-on: ubuntu-latest
42
42
  name: 'rubocop'
43
43
  steps:
44
- - uses: actions/checkout@v3.0.2
45
- - name: Read Ruby version from .ruby-version
46
- run: echo ::set-output name=ruby_version::$(cat .ruby-version)
47
- id: ruby-version
48
-
49
- - uses: ruby/setup-ruby@v1
44
+ - uses: actions/checkout@v3.3.0
45
+ - uses: ruby/setup-ruby@v1.134.0
50
46
  with:
51
- ruby-version: ${{ steps.ruby-version.outputs.ruby_version }}
47
+ ruby-version: .ruby-version
52
48
  - run: |
53
49
  gem install rubocop
54
50
 
@@ -65,7 +61,7 @@ jobs:
65
61
  name: post slack
66
62
  runs-on: ubuntu-latest
67
63
  steps:
68
- - uses: Gamesight/slack-workflow-status@v1.1.0
64
+ - uses: Gamesight/slack-workflow-status@v1.2.0
69
65
  with:
70
66
  repo_token: ${{ secrets.GITHUB_TOKEN }}
71
67
  slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
@@ -0,0 +1,13 @@
1
+ name: tagpr
2
+
3
+ on:
4
+ push:
5
+ branches: ["master"]
6
+ jobs:
7
+ tagpr:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3.3.0
11
+ - uses: Songmu/tagpr@v1
12
+ env:
13
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
data/.gitignore CHANGED
@@ -9,3 +9,5 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ Gemfile.lock
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.6
1
+ 3.2.0
data/.tagpr ADDED
@@ -0,0 +1,42 @@
1
+ # config file for the tagpr in git config format
2
+ # The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3
+ # CONFIGURATIONS:
4
+ # tagpr.releaseBranch
5
+ # Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6
+ # creates or updates a pull request as a release candidate, or tags when they are merged.
7
+ #
8
+ # tagpr.versionFile
9
+ # Versioning file containing the semantic version needed to be updated at release.
10
+ # It will be synchronized with the "git tag".
11
+ # Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12
+ # Sometimes the source code file, such as version.go or Bar.pm, is used.
13
+ # If you do not want to use versioning files but only git tags, specify the "-" string here.
14
+ # You can specify multiple version files by comma separated strings.
15
+ #
16
+ # tagpr.vPrefix
17
+ # Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18
+ # This is only a tagging convention, not how it is described in the version file.
19
+ #
20
+ # tagpr.changelog (Optional)
21
+ # Flag whether or not changelog is added or changed during the release.
22
+ #
23
+ # tagpr.command (Optional)
24
+ # Command to change files just before release.
25
+ #
26
+ # tagpr.template (Optional)
27
+ # Pull request template in go template format
28
+ #
29
+ # tagpr.release (Optional)
30
+ # GitHub Release creation behavior after tagging [true, draft, false]
31
+ # If this value is not set, the release is to be created.
32
+ #
33
+ # tagpr.majorLabels (Optional)
34
+ # Label of major update targets. Default is [major]
35
+ #
36
+ # tagpr.minorLabels (Optional)
37
+ # Label of minor update targets. Default is [minor]
38
+ #
39
+ [tagpr]
40
+ vPrefix = true
41
+ releaseBranch = master
42
+ versionFile = -
data/CHANGELOG.md ADDED
@@ -0,0 +1,93 @@
1
+ # Changelog
2
+
3
+ ## [v0.4.1](https://github.com/swfz/hatenablog_publisher/compare/v0.4.0...v0.4.1) - 2023-01-22
4
+ - chore(deps): update ruby/setup-ruby action to v1.134.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/107
5
+ - to v0.4.1 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/112
6
+
7
+ ## [v0.4.0](https://github.com/swfz/hatenablog_publisher/compare/v0.3.0...v0.4.0) - 2023-01-22
8
+ - chore: Move gem's dependencies. by @honyanya in https://github.com/swfz/hatenablog_publisher/pull/70
9
+ - Fix lint error by @ytkg in https://github.com/swfz/hatenablog_publisher/pull/71
10
+ - chore: Do not manage lock files by @honyanya in https://github.com/swfz/hatenablog_publisher/pull/72
11
+ - chore(deps): update dependency ruby to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/67
12
+ - chore(deps): update actions/cache action to v3.0.3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/73
13
+ - chore(deps): update actions/cache action to v3.0.4 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/75
14
+ - chore(deps): update actions/cache action to v3.0.5 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/77
15
+ - chore(deps): update actions/cache action to v3.0.7 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/79
16
+ - chore(deps): update actions/cache action to v3.0.8 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/82
17
+ - chore(deps): update actions/cache action to v3.0.10 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/84
18
+ - chore(deps): update actions/cache action to v3.0.11 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/88
19
+ - chore(deps): update actions/checkout action to v3.1.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/86
20
+ - #91 ruby-versionのファイルを指定する by @swfz in https://github.com/swfz/hatenablog_publisher/pull/92
21
+ - chore(deps): update ruby/setup-ruby action to v1.122.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/94
22
+ - chore(deps): update ruby/setup-ruby action to v1.124.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/95
23
+ - chore(deps): update ruby/setup-ruby action to v1.125.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/96
24
+ - chore(deps): bump actions/checkout from 3.1.0 to 3.2.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/99
25
+ - feat: add version 3.2 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/104
26
+ - chore(deps): update all dependencies by @renovate in https://github.com/swfz/hatenablog_publisher/pull/98
27
+ - fix: when not set category by @swfz in https://github.com/swfz/hatenablog_publisher/pull/108
28
+ - fix: 間違えてコミットしてしまった部分の削除 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/109
29
+ - カスタムパスへの対応 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/110
30
+
31
+ ## [v0.3.0](https://github.com/swfz/hatenablog_publisher/compare/v0.2.0...v0.3.0) - 2022-05-07
32
+ - chore(deps): bump actions/cache from v2.1.3 to v2.1.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/31
33
+ - chore(deps): update actions/cache action to v2.1.5 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/34
34
+ - chore(deps): bump oauth from 0.5.4 to 0.5.5 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/33
35
+ - chore(deps): update actions/cache action to v2.1.6 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/36
36
+ - chore(deps): bump actions/checkout from 2 to 2.3.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/35
37
+ - chore(deps): bump actions/checkout from 2.3.4 to 2.4.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/42
38
+ - chore(deps): update actions/cache action to v2.1.7 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/43
39
+ - chore(deps): update actions/cache action to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/47
40
+ - chore(deps): update actions/checkout action to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/45
41
+ - chore(deps): bump nokogiri from 1.10.9 to 1.13.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/52
42
+ - chore(deps): bump Gamesight/slack-workflow-status from 1.0.1 to 1.1.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/49
43
+ - chore(deps): update actions/cache action to v3.0.2 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/54
44
+ - chore(deps): bump rexml from 3.2.4 to 3.2.5 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/56
45
+ - chore(deps): bump actions/checkout from 2.4.0 to 3.0.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/53
46
+ - chore(deps): update actions/checkout action to v3.0.2 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/57
47
+ - feat: #58 2系のバージョンでテストを回す by @swfz in https://github.com/swfz/hatenablog_publisher/pull/60
48
+ - feat: use ruby-version by @swfz in https://github.com/swfz/hatenablog_publisher/pull/61
49
+ - feature/upgrade activesupport to 7 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/63
50
+ - chore(deps): update dependency ruby to v2.7.6 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/66
51
+ - feature/remove lockfile by @swfz in https://github.com/swfz/hatenablog_publisher/pull/68
52
+
53
+ ## [v0.2.0](https://github.com/swfz/hatenablog_publisher/compare/v0.1.4...v0.2.0) - 2020-12-28
54
+ - chore: ci badge by @swfz in https://github.com/swfz/hatenablog_publisher/pull/20
55
+ - chore(deps): bump sanitize from 5.1.0 to 5.2.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/21
56
+ - add codecov by @swfz in https://github.com/swfz/hatenablog_publisher/pull/22
57
+ - Feature/follow coverage by @swfz in https://github.com/swfz/hatenablog_publisher/pull/24
58
+ - chore: add codecov badge by @swfz in https://github.com/swfz/hatenablog_publisher/pull/23
59
+ - test: options by @swfz in https://github.com/swfz/hatenablog_publisher/pull/25
60
+ - chore(deps): bump actions/cache from v1 to v2.1.2 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/26
61
+ - chore(deps): bump actions/cache from v2.1.2 to v2.1.3 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/27
62
+ - chore(deps): update actions/cache action to v2.1.3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/28
63
+ - feat: textlintでの除外コメントを投稿時には削除する by @swfz in https://github.com/swfz/hatenablog_publisher/pull/29
64
+ - fix: フォトライフのイメタグのタイプを変更 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/30
65
+
66
+ ## [v0.1.4](https://github.com/swfz/hatenablog_publisher/compare/v0.1.3...v0.1.4) - 2020-06-03
67
+ - chore(deps): bump activesupport from 6.0.3 to 6.0.3.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/18
68
+ - Feature/add exteanal image by @swfz in https://github.com/swfz/hatenablog_publisher/pull/19
69
+
70
+ ## [v0.1.3](https://github.com/swfz/hatenablog_publisher/compare/v0.1.2...v0.1.3) - 2020-05-22
71
+ - Configure Renovate by @renovate in https://github.com/swfz/hatenablog_publisher/pull/14
72
+ - chore(deps): update dependency rake to v13 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/16
73
+ - 投稿時間を管理下に置く by @swfz in https://github.com/swfz/hatenablog_publisher/pull/17
74
+
75
+ ## [v0.1.2](https://github.com/swfz/hatenablog_publisher/compare/v0.1.1...v0.1.2) - 2020-05-21
76
+
77
+ ## [v0.1.1](https://github.com/swfz/hatenablog_publisher/compare/v0.1.0...v0.1.1) - 2020-05-21
78
+
79
+ ## [v0.1.0](https://github.com/swfz/hatenablog_publisher/commits/v0.1.0) - 2020-05-21
80
+ - CI by @swfz in https://github.com/swfz/hatenablog_publisher/pull/1
81
+ - rubocopの追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/2
82
+ - testケースの追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/3
83
+ - APIリクエスト前後のloggerを用意 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/4
84
+ - dos2unix by @swfz in https://github.com/swfz/hatenablog_publisher/pull/5
85
+ - fix: rubocop by @swfz in https://github.com/swfz/hatenablog_publisher/pull/6
86
+ - Feature/add testcase by @swfz in https://github.com/swfz/hatenablog_publisher/pull/7
87
+ - テストのリファクタ by @swfz in https://github.com/swfz/hatenablog_publisher/pull/8
88
+ - 記事下部への広告タグ挿入機能 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/9
89
+ - データ管理方法の追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/10
90
+ - 設定の外部ファイル化 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/11
91
+ - Feature/bugfix by @swfz in https://github.com/swfz/hatenablog_publisher/pull/12
92
+ - refactor by @swfz in https://github.com/swfz/hatenablog_publisher/pull/13
93
+ - 広告挿入機能のテストケース追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/15
data/Gemfile CHANGED
@@ -3,6 +3,14 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in hatenablog_publisher.gemspec
4
4
  gemspec
5
5
 
6
+ group :development do
7
+ gem 'awesome_print'
8
+ gem 'bundler'
9
+ gem 'pry-byebug'
10
+ gem 'rake'
11
+ gem 'rspec'
12
+ end
13
+
6
14
  group :test do
7
15
  gem 'codecov', require: false
8
16
  end
data/README.md CHANGED
@@ -41,6 +41,7 @@ args = ARGV.getopts('',
41
41
  'filename:',
42
42
  'config:',
43
43
  'data_file:',
44
+ 'custom_path',
44
45
  'trace').symbolize_keys
45
46
 
46
47
  HatenablogPublisher.publish(args)
@@ -75,6 +76,10 @@ HatenablogPublisher.publish(args)
75
76
  - for article management
76
77
  - JSON format
77
78
 
79
+ - custom_path
80
+ - specify a path
81
+ - If `foo/bar` is specified, the URL of the article will be `entry/foo/bar`.
82
+
78
83
  - trace
79
84
  - Detailed Output
80
85
 
@@ -13,6 +13,7 @@ args = ARGV.getopts('',
13
13
  'filename:',
14
14
  'config:',
15
15
  'data_file:',
16
+ 'custom_path:',
16
17
  'trace').symbolize_keys
17
18
 
18
19
  HatenablogPublisher.publish(args)
@@ -23,11 +23,6 @@ Gem::Specification.new do |spec|
23
23
  spec.bindir = "exe"
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ["lib"]
26
- spec.add_development_dependency 'bundler'
27
- spec.add_development_dependency 'rake'
28
- spec.add_development_dependency 'rspec'
29
- spec.add_development_dependency 'awesome_print'
30
- spec.add_development_dependency 'pry-byebug'
31
26
  spec.add_dependency 'activesupport'
32
27
  spec.add_dependency 'front_matter_parser'
33
28
  spec.add_dependency 'oauth'
@@ -1,6 +1,5 @@
1
1
  require 'oauth'
2
2
  require 'json'
3
- require 'awesome_print'
4
3
 
5
4
  module HatenablogPublisher
6
5
  class Client
@@ -39,11 +39,21 @@ module HatenablogPublisher
39
39
  end
40
40
 
41
41
  def categories
42
+ return unless @context.categories
43
+
42
44
  @context.categories.map do |c|
43
45
  '<category term="' + c + '" />'
44
46
  end.join
45
47
  end
46
48
 
49
+ def custom_path
50
+ return unless @options.custom_path
51
+
52
+ <<~"XML"
53
+ <hatenablog:custom-url xmlns:hatenablog="http://www.hatena.ne.jp/info/xmlns#hatenablog">#{@options.custom_path}</hatenablog:custom-url>
54
+ XML
55
+ end
56
+
47
57
  def format_request(body)
48
58
  draft = @options.draft ? 'yes' : 'no'
49
59
  body = <<~"XML"
@@ -60,6 +70,7 @@ module HatenablogPublisher
60
70
  <app:control>
61
71
  <app:draft>#{draft}</app:draft>
62
72
  </app:control>
73
+ #{custom_path}
63
74
  </entry>
64
75
  XML
65
76
  body
@@ -1,3 +1,3 @@
1
1
  module HatenablogPublisher
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,85 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hatenablog_publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - swfz
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-07 00:00:00.000000000 Z
11
+ date: 2023-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: awesome_print
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: pry-byebug
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
13
  - !ruby/object:Gem::Dependency
84
14
  name: activesupport
85
15
  requirement: !ruby/object:Gem::Requirement
@@ -178,7 +108,7 @@ dependencies:
178
108
  - - ">="
179
109
  - !ruby/object:Gem::Version
180
110
  version: '0'
181
- description:
111
+ description:
182
112
  email:
183
113
  - sawafuji.09@gmail.com
184
114
  executables:
@@ -187,12 +117,16 @@ extensions: []
187
117
  extra_rdoc_files: []
188
118
  files:
189
119
  - ".github/dependabot.yml"
120
+ - ".github/release.yml"
190
121
  - ".github/workflows/ci.yml"
122
+ - ".github/workflows/tagpr.yml"
191
123
  - ".gitignore"
192
124
  - ".rspec"
193
125
  - ".rubocop.yml"
194
126
  - ".ruby-version"
127
+ - ".tagpr"
195
128
  - ".travis.yml"
129
+ - CHANGELOG.md
196
130
  - CODE_OF_CONDUCT.md
197
131
  - Gemfile
198
132
  - LICENSE.txt
@@ -223,7 +157,7 @@ metadata:
223
157
  homepage_uri: https://github.com/swfz/hatenablog_publisher
224
158
  source_code_uri: https://github.com/swfz/hatenablog_publisher
225
159
  changelog_uri: https://github.com/swfz/hatenablog_publisher
226
- post_install_message:
160
+ post_install_message:
227
161
  rdoc_options: []
228
162
  require_paths:
229
163
  - lib
@@ -238,8 +172,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
238
172
  - !ruby/object:Gem::Version
239
173
  version: '0'
240
174
  requirements: []
241
- rubygems_version: 3.1.6
242
- signing_key:
175
+ rubygems_version: 3.4.1
176
+ signing_key:
243
177
  specification_version: 4
244
178
  summary: Gem that posts to the Hatena Blog API and PhotoLife API
245
179
  test_files: []