omniauth-chatwork 0.1.2 → 0.1.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
2
  SHA256:
3
- metadata.gz: c555f931346a8be75930bec850b25b881d1a71b8981a5605d209b8831a7d0056
4
- data.tar.gz: a893e973970daf1a000f2fb7e31f66909767e2eb59ff4351448a6f8c5e6e3247
3
+ metadata.gz: bd90dbf78a88da83762490a832463e10cb440fa67fc0c12aec347c2c727ac606
4
+ data.tar.gz: 9aa52262f0c5bb1b476376019f95cafd97b8e19f52a6c84153b5077f5d06a3f5
5
5
  SHA512:
6
- metadata.gz: 5b89a15a2b958fecbc16e627cff0b5cc2ed3ed896444497e6ab1389ee5c426be83842ad740aa0be404ec32a53a7b01709641aebc08b6e13f89a4a29416ce5e69
7
- data.tar.gz: 2f0d3d1a4b207fab8ef14f1caf251acb09e2ab8ac6cef97b4d322a10f34fc45e8076f68988eaee7b4cb35ec8218bb800a5da6eb2f97089636dfb01238e788cad
6
+ metadata.gz: 1c50fb19a5ae7664f39fb077657b675a1162da6a7668f3dacacec0a734c8b29b2d99887c7f60aaeea79213c0a44e3e8f7cff47d4046281c02b6a163c68cadd78
7
+ data.tar.gz: 0fe111546bb5ab6c88426d8078fd75537724383d1377315d07fd33c5614d7c5ce135cada1d8462960facc4254f8d012b65ca70f22f3cb75a7bc3f603a9dbfd38
@@ -0,0 +1,12 @@
1
+ # c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
+ version: 2
3
+
4
+ updates:
5
+ - package-ecosystem: github-actions
6
+ directory: /
7
+ schedule:
8
+ interval: weekly
9
+ cooldown:
10
+ default-days: 7
11
+ assignees:
12
+ - sue445
@@ -0,0 +1,59 @@
1
+ # Simple workflow for deploying static content to GitHub Pages
2
+ name: Deploy static content to Pages
3
+
4
+ on:
5
+ # Runs on pushes targeting the default branch
6
+ push:
7
+ branches:
8
+ - master
9
+
10
+ # Allows you to run this workflow manually from the Actions tab
11
+ workflow_dispatch:
12
+
13
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14
+ permissions:
15
+ contents: read
16
+ pages: write
17
+ id-token: write
18
+
19
+ # Allow one concurrent deployment
20
+ concurrency:
21
+ group: "pages"
22
+ cancel-in-progress: true
23
+
24
+ jobs:
25
+ # Single deploy job since we're just deploying
26
+ deploy:
27
+ environment:
28
+ name: github-pages
29
+ url: ${{ steps.deployment.outputs.page_url }}
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - name: Checkout
33
+ uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
34
+
35
+ - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
36
+ with:
37
+ ruby-version: ruby
38
+ bundler-cache: true
39
+
40
+ - run: bundle exec yard
41
+
42
+ - name: Setup Pages
43
+ uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
44
+ - name: Upload artifact
45
+ uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
46
+ with:
47
+ # Upload entire repository
48
+ path: './doc'
49
+ - name: Deploy to GitHub Pages
50
+ id: deployment
51
+ uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
52
+
53
+ - name: Slack Notification (not success)
54
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
55
+ if: "! success()"
56
+ continue-on-error: true
57
+ with:
58
+ status: ${{ job.status }}
59
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
@@ -0,0 +1,41 @@
1
+ name: Publish gem to rubygems.org
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ release:
8
+ if: github.repository == 'sue445/omniauth-chatwork'
9
+ runs-on: ubuntu-latest
10
+
11
+ environment:
12
+ name: rubygems.org
13
+ url: https://rubygems.org/gems/omniauth-chatwork
14
+
15
+ permissions:
16
+ contents: write
17
+ id-token: write
18
+
19
+ steps:
20
+ - name: Harden Runner
21
+ uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
22
+ with:
23
+ egress-policy: audit
24
+
25
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26
+
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
29
+ with:
30
+ bundler-cache: true
31
+ ruby-version: ruby
32
+
33
+ - name: Publish to RubyGems
34
+ uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
35
+
36
+ - name: Create GitHub release
37
+ run: |
38
+ tag_name="$(git describe --tags --abbrev=0)"
39
+ gh release create "${tag_name}" --verify-tag --generate-notes
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -16,8 +16,6 @@ jobs:
16
16
  test:
17
17
  runs-on: ubuntu-latest
18
18
 
19
- container: ${{ matrix.ruby }}
20
-
21
19
  env:
22
20
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
23
21
 
@@ -26,73 +24,57 @@ jobs:
26
24
 
27
25
  matrix:
28
26
  ruby:
29
- - ruby:2.2
30
- - ruby:2.3
31
- - ruby:2.4
32
- - ruby:2.5
33
- - ruby:2.6
34
- - ruby:2.7
35
- - ruby:3.0
36
- - rubylang/ruby:master-nightly-bionic
27
+ - "2.2"
28
+ - "2.3"
29
+ - "2.4"
30
+ - "2.5"
31
+ - "2.6"
32
+ - "2.7"
33
+ - "3.0"
34
+ - "3.1"
35
+ - "3.2"
36
+ - "3.3"
37
+ - "3.4"
37
38
  gemfile:
38
39
  - omniauth_1
39
40
  - omniauth_2
40
- include:
41
- - ruby: rubylang/ruby:master-nightly-bionic
42
- allow_failures: "true"
43
41
 
44
42
  steps:
45
- - uses: actions/checkout@v2
43
+ - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
46
44
 
47
- - name: Cache vendor/bundle
48
- uses: actions/cache@v1
49
- id: cache_gem
45
+ - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
50
46
  with:
51
- path: vendor/bundle
52
- key: v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ github.sha }}
53
- restore-keys: |
54
- v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ matrix.gemfile }}-
55
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
47
+ ruby-version: ${{ matrix.ruby }}
48
+ bundler-cache: true
49
+ cache-version: ${{ matrix.gemfile }}
56
50
 
57
- - name: bundle update
58
- run: |
59
- set -xe
60
- bundle config path vendor/bundle
61
- bundle update --jobs $(nproc) --retry 3
62
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
51
+ - run: bundle update --jobs $(nproc) --retry 3
63
52
 
64
53
  - name: Setup Code Climate Test Reporter
65
- uses: aktions/codeclimate-test-reporter@v1
54
+ uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
66
55
  with:
67
56
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
68
57
  command: before-build
69
- if: matrix.ruby >= 'ruby:2.4'
70
58
  continue-on-error: true
71
59
 
72
- - name: Run test
73
- run: |
74
- set -xe
75
- bundle exec rspec
76
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
60
+ - run: bundle exec rspec
77
61
 
78
62
  - name: Teardown Code Climate Test Reporter
79
- uses: aktions/codeclimate-test-reporter@v1
63
+ uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
80
64
  with:
81
65
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
82
66
  command: after-build
83
- if: matrix.ruby >= 'ruby:2.4' && always()
67
+ if: always()
84
68
  continue-on-error: true
85
69
 
86
70
  - name: Slack Notification (not success)
87
- uses: lazy-actions/slatify@master
71
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
88
72
  if: "! success()"
89
73
  continue-on-error: true
90
74
  with:
91
- job_name: ${{ format('*build* ({0})', matrix.ruby) }}
92
- type: ${{ job.status }}
93
- icon_emoji: ":octocat:"
94
- url: ${{ secrets.SLACK_WEBHOOK }}
95
- token: ${{ secrets.GITHUB_TOKEN }}
75
+ status: ${{ job.status }}
76
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
77
+ matrix: ${{ toJson(matrix) }}
96
78
 
97
79
  notify:
98
80
  needs:
@@ -102,12 +84,9 @@ jobs:
102
84
 
103
85
  steps:
104
86
  - name: Slack Notification (success)
105
- uses: lazy-actions/slatify@master
87
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
106
88
  if: always()
107
89
  continue-on-error: true
108
90
  with:
109
- job_name: '*build*'
110
- type: ${{ job.status }}
111
- icon_emoji: ":octocat:"
112
- url: ${{ secrets.SLACK_WEBHOOK }}
113
- token: ${{ secrets.GITHUB_TOKEN }}
91
+ status: ${{ job.status }}
92
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
data/.yardopts ADDED
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ --no-private
3
+ --asset img/
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  ## Unreleased
2
- [full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.2...master)
2
+ [full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.4...master)
3
+
4
+ ## [v0.1.4](https://github.com/sue445/omniauth-chatwork/releases/tag/v0.1.4)
5
+ [full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.3...v0.1.4)
6
+
7
+ * Release gem from GitHub Actions
8
+ * https://github.com/sue445/omniauth-chatwork/pull/69
9
+
10
+ ## v0.1.3
11
+ [full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.2...v0.1.3)
12
+
13
+ * Avoid oauth2 v1.4.8
14
+ * https://github.com/sue445/omniauth-chatwork/pull/35
3
15
 
4
16
  ## v0.1.2
5
17
  [full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.1...v0.1.2)
data/Gemfile CHANGED
@@ -6,3 +6,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6
6
  gemspec
7
7
 
8
8
  gem "webrick"
9
+
10
+ eval_gemfile "#{__dir__}/gemfiles/common.gemfile"
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  OmniAuth strategy for ChatWork
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/omniauth-chatwork.svg)](https://badge.fury.io/rb/omniauth-chatwork)
6
- [![Build Status](https://github.com/sue445/omniauth-chatwork/workflows/test/badge.svg?branch=master)](https://github.com/sue445/omniauth-chatwork/actions?query=workflow%3Atest)
6
+ [![test](https://github.com/sue445/omniauth-chatwork/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/omniauth-chatwork/actions/workflows/test.yml)
7
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/c28dcf54cef09425c10d/maintainability)](https://codeclimate.com/github/sue445/omniauth-chatwork/maintainability)
8
8
  [![Coverage Status](https://coveralls.io/repos/github/sue445/omniauth-chatwork/badge.svg)](https://coveralls.io/github/sue445/omniauth-chatwork)
9
9
 
@@ -0,0 +1,16 @@
1
+ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0")
2
+ # multipart-post v2.2.0 uses `Object.deprecate_constant`, but this available since Ruby 2.3.0+
3
+ # https://github.com/socketry/multipart-post/blob/v2.2.0/lib/multipart/post/parts.rb#L152
4
+ gem "multipart-post", "< 2.2.0"
5
+
6
+ # NOTE: webmock v3.15.0+ requires Ruby 2.3+
7
+ gem "webmock", "< 3.15.0"
8
+
9
+ # NOTE: logger v1.3.0+ requires Ruby 2.3+
10
+ gem "logger", "< 1.3.0"
11
+ end
12
+
13
+ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
14
+ # term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
15
+ gem "term-ansicolor", "< 1.9.0"
16
+ end
@@ -6,3 +6,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6
6
  gemspec path: "../"
7
7
 
8
8
  gem "omniauth", "~> 1.9"
9
+
10
+ eval_gemfile "#{__dir__}/common.gemfile"
@@ -6,3 +6,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6
6
  gemspec path: "../"
7
7
 
8
8
  gem "omniauth", "~> 2.0"
9
+
10
+ eval_gemfile "#{__dir__}/common.gemfile"
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Chatwork
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
@@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.metadata["homepage_uri"] = spec.homepage
18
18
  spec.metadata["source_code_uri"] = spec.homepage
19
19
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
20
+ spec.metadata["documentation_uri"] = "https://sue445.github.io/omniauth-chatwork/"
20
21
  spec.metadata["rubygems_mfa_required"] = "true"
21
22
 
22
23
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -31,18 +32,19 @@ Gem::Specification.new do |spec|
31
32
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
33
  spec.require_paths = ["lib"]
33
34
 
35
+ spec.add_dependency "oauth2", ">= 1.3.0", "!= 1.4.8"
34
36
  spec.add_dependency "omniauth-oauth2"
35
37
 
36
38
  spec.add_development_dependency "bundler", ">= 1.16"
37
- spec.add_development_dependency "coveralls"
39
+ spec.add_development_dependency "coveralls_reborn"
38
40
  spec.add_development_dependency "dotenv"
39
41
  spec.add_development_dependency "faraday_curl"
40
- spec.add_development_dependency "oauth2", ">= 1.3.0"
41
- spec.add_development_dependency "pry-byebug"
42
42
  spec.add_development_dependency "rack-test"
43
43
  spec.add_development_dependency "rake", ">= 10.0"
44
44
  spec.add_development_dependency "rspec", "~> 3.0"
45
45
  spec.add_development_dependency "rspec-its"
46
46
  spec.add_development_dependency "sinatra"
47
+ spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
47
48
  spec.add_development_dependency "webmock"
49
+ spec.add_development_dependency "yard"
48
50
  end
metadata CHANGED
@@ -1,51 +1,42 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-chatwork
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2021-11-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
- name: omniauth-oauth2
13
+ name: oauth2
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '0'
18
+ version: 1.3.0
19
+ - - "!="
20
+ - !ruby/object:Gem::Version
21
+ version: 1.4.8
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
26
  - - ">="
25
27
  - !ruby/object:Gem::Version
26
- version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '1.16'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
28
+ version: 1.3.0
29
+ - - "!="
39
30
  - !ruby/object:Gem::Version
40
- version: '1.16'
31
+ version: 1.4.8
41
32
  - !ruby/object:Gem::Dependency
42
- name: coveralls
33
+ name: omniauth-oauth2
43
34
  requirement: !ruby/object:Gem::Requirement
44
35
  requirements:
45
36
  - - ">="
46
37
  - !ruby/object:Gem::Version
47
38
  version: '0'
48
- type: :development
39
+ type: :runtime
49
40
  prerelease: false
50
41
  version_requirements: !ruby/object:Gem::Requirement
51
42
  requirements:
@@ -53,21 +44,21 @@ dependencies:
53
44
  - !ruby/object:Gem::Version
54
45
  version: '0'
55
46
  - !ruby/object:Gem::Dependency
56
- name: dotenv
47
+ name: bundler
57
48
  requirement: !ruby/object:Gem::Requirement
58
49
  requirements:
59
50
  - - ">="
60
51
  - !ruby/object:Gem::Version
61
- version: '0'
52
+ version: '1.16'
62
53
  type: :development
63
54
  prerelease: false
64
55
  version_requirements: !ruby/object:Gem::Requirement
65
56
  requirements:
66
57
  - - ">="
67
58
  - !ruby/object:Gem::Version
68
- version: '0'
59
+ version: '1.16'
69
60
  - !ruby/object:Gem::Dependency
70
- name: faraday_curl
61
+ name: coveralls_reborn
71
62
  requirement: !ruby/object:Gem::Requirement
72
63
  requirements:
73
64
  - - ">="
@@ -81,21 +72,21 @@ dependencies:
81
72
  - !ruby/object:Gem::Version
82
73
  version: '0'
83
74
  - !ruby/object:Gem::Dependency
84
- name: oauth2
75
+ name: dotenv
85
76
  requirement: !ruby/object:Gem::Requirement
86
77
  requirements:
87
78
  - - ">="
88
79
  - !ruby/object:Gem::Version
89
- version: 1.3.0
80
+ version: '0'
90
81
  type: :development
91
82
  prerelease: false
92
83
  version_requirements: !ruby/object:Gem::Requirement
93
84
  requirements:
94
85
  - - ">="
95
86
  - !ruby/object:Gem::Version
96
- version: 1.3.0
87
+ version: '0'
97
88
  - !ruby/object:Gem::Dependency
98
- name: pry-byebug
89
+ name: faraday_curl
99
90
  requirement: !ruby/object:Gem::Requirement
100
91
  requirements:
101
92
  - - ">="
@@ -178,6 +169,20 @@ dependencies:
178
169
  - - ">="
179
170
  - !ruby/object:Gem::Version
180
171
  version: '0'
172
+ - !ruby/object:Gem::Dependency
173
+ name: term-ansicolor
174
+ requirement: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - "!="
177
+ - !ruby/object:Gem::Version
178
+ version: 1.11.1
179
+ type: :development
180
+ prerelease: false
181
+ version_requirements: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "!="
184
+ - !ruby/object:Gem::Version
185
+ version: 1.11.1
181
186
  - !ruby/object:Gem::Dependency
182
187
  name: webmock
183
188
  requirement: !ruby/object:Gem::Requirement
@@ -192,6 +197,20 @@ dependencies:
192
197
  - - ">="
193
198
  - !ruby/object:Gem::Version
194
199
  version: '0'
200
+ - !ruby/object:Gem::Dependency
201
+ name: yard
202
+ requirement: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ type: :development
208
+ prerelease: false
209
+ version_requirements: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ version: '0'
195
214
  description: OmniAuth strategy for ChatWork
196
215
  email:
197
216
  - sue445@sue445.net
@@ -201,9 +220,13 @@ extra_rdoc_files: []
201
220
  files:
202
221
  - ".coveralls.yml"
203
222
  - ".env.example"
223
+ - ".github/dependabot.yml"
224
+ - ".github/workflows/pages.yml"
225
+ - ".github/workflows/release_gem.yml"
204
226
  - ".github/workflows/test.yml"
205
227
  - ".gitignore"
206
228
  - ".rspec"
229
+ - ".yardopts"
207
230
  - CHANGELOG.md
208
231
  - Gemfile
209
232
  - LICENSE.txt
@@ -211,6 +234,7 @@ files:
211
234
  - Rakefile
212
235
  - bin/console
213
236
  - bin/setup
237
+ - gemfiles/common.gemfile
214
238
  - gemfiles/omniauth_1.gemfile
215
239
  - gemfiles/omniauth_2.gemfile
216
240
  - lib/omniauth-chatwork.rb
@@ -225,8 +249,8 @@ metadata:
225
249
  homepage_uri: https://github.com/sue445/omniauth-chatwork
226
250
  source_code_uri: https://github.com/sue445/omniauth-chatwork
227
251
  changelog_uri: https://github.com/sue445/omniauth-chatwork/blob/master/CHANGELOG.md
252
+ documentation_uri: https://sue445.github.io/omniauth-chatwork/
228
253
  rubygems_mfa_required: 'true'
229
- post_install_message:
230
254
  rdoc_options: []
231
255
  require_paths:
232
256
  - lib
@@ -241,8 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
241
265
  - !ruby/object:Gem::Version
242
266
  version: '0'
243
267
  requirements: []
244
- rubygems_version: 3.2.22
245
- signing_key:
268
+ rubygems_version: 3.6.7
246
269
  specification_version: 4
247
270
  summary: OmniAuth strategy for ChatWork
248
271
  test_files: []