omniauth-chatwork 0.1.3 → 0.1.5
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/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/pages.yml +18 -0
- data/.github/workflows/release_gem.yml +14 -0
- data/.github/workflows/test.yml +69 -60
- data/.yardopts +3 -0
- data/CHANGELOG.md +13 -1
- data/Gemfile +2 -0
- data/README.md +2 -2
- data/gemfiles/common.gemfile +31 -0
- data/gemfiles/omniauth_1.gemfile +2 -0
- data/gemfiles/omniauth_2.gemfile +2 -0
- data/lib/omniauth/chatwork/version.rb +1 -1
- data/omniauth-chatwork.gemspec +5 -2
- metadata +47 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c5778f85bbee3ff1869661f1f0ed2b0d5080779088d0eddca180f8dc2ce327a
|
|
4
|
+
data.tar.gz: b084c04d9281ce02db5e815266252c0b66b2ebb544da8fe95337343ea12293af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 522ef2cbbc42f265fb043ee1cbfed4117eb4f0ce5affba35fbe18c5e8f88c82068cac524c720e59ba841fc7c76bdfbf0daf9756a27ba49ca70ba00816aec06c5
|
|
7
|
+
data.tar.gz: 20668098dd0408a0c4fab18750c43517a5bb691c213a5d7eaa425e6754d25cdb0a9b70e6bc10c11a72dd111e8f03d63eeddb8549ad2c6a9eb14cddeccf538b50
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: /
|
|
10
|
+
schedule:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
14
|
+
assignees:
|
|
15
|
+
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/omniauth-chatwork
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/omniauth-chatwork
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Deploy yard to Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
deploy:
|
|
16
|
+
uses: sue445/workflows/.github/workflows/pages-yard.yml@main
|
|
17
|
+
secrets:
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
uses: sue445/workflows/.github/workflows/release_gem.yml@main
|
|
9
|
+
with:
|
|
10
|
+
repo-name: sue445/omniauth-chatwork
|
|
11
|
+
gem-name: omniauth-chatwork
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -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,89 +24,100 @@ jobs:
|
|
|
26
24
|
|
|
27
25
|
matrix:
|
|
28
26
|
ruby:
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
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"
|
|
38
|
+
- "4.0"
|
|
38
39
|
gemfile:
|
|
39
40
|
- omniauth_1
|
|
40
41
|
- omniauth_2
|
|
42
|
+
|
|
41
43
|
include:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
# FIXME: Workaround for "ArgumentError: wrong number of arguments (given 4, expected 1)"
|
|
45
|
+
# c.f. https://github.com/ruby/setup-ruby#rubygems
|
|
46
|
+
- ruby: "2.5"
|
|
47
|
+
rubygems: "3.0.0"
|
|
44
48
|
|
|
45
49
|
steps:
|
|
46
|
-
- uses: actions/checkout@
|
|
50
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
47
51
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
52
|
+
# FIXME: Workaround for error in `bundle clean`
|
|
53
|
+
# /opt/hostedtoolcache/Ruby/2.5.9/x64/bin/bundle clean
|
|
54
|
+
# Cleaning all the gems on your system is dangerous! If you're sure you want to
|
|
55
|
+
# remove every system gem not in this bundle, run `bundle clean --force`.
|
|
56
|
+
- name: export BUNDLE_PATH
|
|
57
|
+
run: echo "BUNDLE_PATH=vendor/bundle" >> $GITHUB_ENV
|
|
58
|
+
if: matrix.ruby == '2.5'
|
|
59
|
+
|
|
60
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
51
61
|
with:
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
62
|
+
ruby-version: ${{ matrix.ruby }}
|
|
63
|
+
bundler-cache: true
|
|
64
|
+
rubygems: ${{ matrix.rubygems || 'default' }}
|
|
65
|
+
|
|
66
|
+
- run: bundle update --all --jobs $(nproc) --retry 3
|
|
67
|
+
|
|
68
|
+
- run: bundle exec rspec
|
|
69
|
+
|
|
70
|
+
- name: Slack Notification (not success)
|
|
71
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
72
|
+
if: "! success()"
|
|
73
|
+
continue-on-error: true
|
|
74
|
+
with:
|
|
75
|
+
status: ${{ job.status }}
|
|
76
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
77
|
+
matrix: ${{ toJson(matrix) }}
|
|
78
|
+
|
|
79
|
+
yard:
|
|
80
|
+
runs-on: ubuntu-latest
|
|
81
|
+
|
|
82
|
+
steps:
|
|
83
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
84
|
+
|
|
85
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
86
|
+
with:
|
|
87
|
+
ruby-version: ruby
|
|
88
|
+
bundler-cache: true
|
|
57
89
|
|
|
58
90
|
- name: bundle update
|
|
59
91
|
run: |
|
|
60
92
|
set -xe
|
|
61
93
|
bundle config path vendor/bundle
|
|
62
|
-
bundle update --jobs $(nproc) --retry 3
|
|
63
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
64
|
-
|
|
65
|
-
- name: Setup Code Climate Test Reporter
|
|
66
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
67
|
-
with:
|
|
68
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
69
|
-
command: before-build
|
|
70
|
-
if: matrix.ruby >= 'ruby:2.4'
|
|
71
|
-
continue-on-error: true
|
|
94
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
72
95
|
|
|
73
|
-
- name:
|
|
96
|
+
- name: yard generating test
|
|
74
97
|
run: |
|
|
75
98
|
set -xe
|
|
76
|
-
bundle exec
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
- name: Teardown Code Climate Test Reporter
|
|
80
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
81
|
-
with:
|
|
82
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
83
|
-
command: after-build
|
|
84
|
-
if: matrix.ruby >= 'ruby:2.4' && always()
|
|
85
|
-
continue-on-error: true
|
|
99
|
+
bundle exec yard
|
|
100
|
+
ls -ld doc/
|
|
86
101
|
|
|
87
102
|
- name: Slack Notification (not success)
|
|
88
|
-
uses:
|
|
103
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
89
104
|
if: "! success()"
|
|
90
105
|
continue-on-error: true
|
|
91
106
|
with:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
107
|
+
status: ${{ job.status }}
|
|
108
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
109
|
+
|
|
110
|
+
all-pass:
|
|
111
|
+
if: always()
|
|
97
112
|
|
|
98
|
-
notify:
|
|
99
113
|
needs:
|
|
100
114
|
- test
|
|
115
|
+
- yard
|
|
101
116
|
|
|
102
|
-
runs-on: ubuntu-
|
|
117
|
+
runs-on: ubuntu-slim
|
|
103
118
|
|
|
104
119
|
steps:
|
|
105
|
-
- name:
|
|
106
|
-
uses:
|
|
107
|
-
if: always()
|
|
108
|
-
continue-on-error: true
|
|
120
|
+
- name: check dependent jobs
|
|
121
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
109
122
|
with:
|
|
110
|
-
|
|
111
|
-
type: ${{ job.status }}
|
|
112
|
-
icon_emoji: ":octocat:"
|
|
113
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
114
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
123
|
+
jobs: ${{ toJSON(needs) }}
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.
|
|
2
|
+
[full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.5...master)
|
|
3
|
+
|
|
4
|
+
## [v0.1.5](https://github.com/sue445/omniauth-chatwork/releases/tag/v0.1.5)
|
|
5
|
+
[full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.4...v0.1.5)
|
|
6
|
+
|
|
7
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
8
|
+
* https://github.com/sue445/omniauth-chatwork/pull/114
|
|
9
|
+
|
|
10
|
+
## [v0.1.4](https://github.com/sue445/omniauth-chatwork/releases/tag/v0.1.4)
|
|
11
|
+
[full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.3...v0.1.4)
|
|
12
|
+
|
|
13
|
+
* Release gem from GitHub Actions
|
|
14
|
+
* https://github.com/sue445/omniauth-chatwork/pull/69
|
|
3
15
|
|
|
4
16
|
## v0.1.3
|
|
5
17
|
[full changelog](https://github.com/sue445/omniauth-chatwork/compare/v0.1.2...v0.1.3)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
OmniAuth strategy for ChatWork
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/rb/omniauth-chatwork)
|
|
6
|
-
[](https://github.com/sue445/omniauth-chatwork/actions/workflows/test.yml)
|
|
7
|
+
[](https://qlty.sh/gh/sue445/projects/omniauth-chatwork)
|
|
8
8
|
[](https://coveralls.io/github/sue445/omniauth-chatwork)
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
|
|
12
|
+
# NOTE: Workaround for following error on Ruby 2.2
|
|
13
|
+
# LoadError:
|
|
14
|
+
# cannot load such file -- cgi/escape
|
|
15
|
+
# # ./vendor/bundle/ruby/2.2.0/gems/oauth2-2.0.20/lib/oauth2.rb:4:in `require'
|
|
16
|
+
# # ./vendor/bundle/ruby/2.2.0/gems/oauth2-2.0.20/lib/oauth2.rb:4:in `<top (required)>'
|
|
17
|
+
# # ./vendor/bundle/ruby/2.2.0/gems/omniauth-oauth2-1.7.3/lib/omniauth/strategies/oauth2.rb:1:in `require'
|
|
18
|
+
# # ./vendor/bundle/ruby/2.2.0/gems/omniauth-oauth2-1.7.3/lib/omniauth/strategies/oauth2.rb:1:in `<top (required)>'
|
|
19
|
+
# # ./lib/omniauth/strategies/chatwork.rb:1:in `require'
|
|
20
|
+
# # ./lib/omniauth/strategies/chatwork.rb:1:in `<top (required)>'
|
|
21
|
+
# # ./lib/omniauth/chatwork.rb:2:in `require'
|
|
22
|
+
# # ./lib/omniauth/chatwork.rb:2:in `<top (required)>'
|
|
23
|
+
# # ./spec/spec_helper.rb:18:in `require'
|
|
24
|
+
# # ./spec/spec_helper.rb:18:in `<top (required)>'
|
|
25
|
+
gem "oauth2", "< 2.0.19"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
29
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
|
30
|
+
gem "term-ansicolor", "< 1.9.0"
|
|
31
|
+
end
|
data/gemfiles/omniauth_1.gemfile
CHANGED
data/gemfiles/omniauth_2.gemfile
CHANGED
data/omniauth-chatwork.gemspec
CHANGED
|
@@ -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|
|
|
@@ -35,14 +36,16 @@ Gem::Specification.new do |spec|
|
|
|
35
36
|
spec.add_dependency "omniauth-oauth2"
|
|
36
37
|
|
|
37
38
|
spec.add_development_dependency "bundler", ">= 1.16"
|
|
38
|
-
spec.add_development_dependency "
|
|
39
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
39
40
|
spec.add_development_dependency "dotenv"
|
|
40
41
|
spec.add_development_dependency "faraday_curl"
|
|
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
|
+
spec.add_development_dependency "rdoc"
|
|
44
45
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
45
46
|
spec.add_development_dependency "rspec-its"
|
|
46
47
|
spec.add_development_dependency "sinatra"
|
|
48
|
+
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
47
49
|
spec.add_development_dependency "webmock"
|
|
50
|
+
spec.add_development_dependency "yard"
|
|
48
51
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-chatwork
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: oauth2
|
|
@@ -59,7 +58,7 @@ dependencies:
|
|
|
59
58
|
- !ruby/object:Gem::Version
|
|
60
59
|
version: '1.16'
|
|
61
60
|
- !ruby/object:Gem::Dependency
|
|
62
|
-
name:
|
|
61
|
+
name: coveralls_reborn
|
|
63
62
|
requirement: !ruby/object:Gem::Requirement
|
|
64
63
|
requirements:
|
|
65
64
|
- - ">="
|
|
@@ -101,7 +100,7 @@ dependencies:
|
|
|
101
100
|
- !ruby/object:Gem::Version
|
|
102
101
|
version: '0'
|
|
103
102
|
- !ruby/object:Gem::Dependency
|
|
104
|
-
name:
|
|
103
|
+
name: rack-test
|
|
105
104
|
requirement: !ruby/object:Gem::Requirement
|
|
106
105
|
requirements:
|
|
107
106
|
- - ">="
|
|
@@ -115,33 +114,33 @@ dependencies:
|
|
|
115
114
|
- !ruby/object:Gem::Version
|
|
116
115
|
version: '0'
|
|
117
116
|
- !ruby/object:Gem::Dependency
|
|
118
|
-
name:
|
|
117
|
+
name: rake
|
|
119
118
|
requirement: !ruby/object:Gem::Requirement
|
|
120
119
|
requirements:
|
|
121
120
|
- - ">="
|
|
122
121
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: '0'
|
|
122
|
+
version: '10.0'
|
|
124
123
|
type: :development
|
|
125
124
|
prerelease: false
|
|
126
125
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
126
|
requirements:
|
|
128
127
|
- - ">="
|
|
129
128
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '0'
|
|
129
|
+
version: '10.0'
|
|
131
130
|
- !ruby/object:Gem::Dependency
|
|
132
|
-
name:
|
|
131
|
+
name: rdoc
|
|
133
132
|
requirement: !ruby/object:Gem::Requirement
|
|
134
133
|
requirements:
|
|
135
134
|
- - ">="
|
|
136
135
|
- !ruby/object:Gem::Version
|
|
137
|
-
version: '
|
|
136
|
+
version: '0'
|
|
138
137
|
type: :development
|
|
139
138
|
prerelease: false
|
|
140
139
|
version_requirements: !ruby/object:Gem::Requirement
|
|
141
140
|
requirements:
|
|
142
141
|
- - ">="
|
|
143
142
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: '
|
|
143
|
+
version: '0'
|
|
145
144
|
- !ruby/object:Gem::Dependency
|
|
146
145
|
name: rspec
|
|
147
146
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -184,6 +183,20 @@ dependencies:
|
|
|
184
183
|
- - ">="
|
|
185
184
|
- !ruby/object:Gem::Version
|
|
186
185
|
version: '0'
|
|
186
|
+
- !ruby/object:Gem::Dependency
|
|
187
|
+
name: term-ansicolor
|
|
188
|
+
requirement: !ruby/object:Gem::Requirement
|
|
189
|
+
requirements:
|
|
190
|
+
- - "!="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 1.11.1
|
|
193
|
+
type: :development
|
|
194
|
+
prerelease: false
|
|
195
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
196
|
+
requirements:
|
|
197
|
+
- - "!="
|
|
198
|
+
- !ruby/object:Gem::Version
|
|
199
|
+
version: 1.11.1
|
|
187
200
|
- !ruby/object:Gem::Dependency
|
|
188
201
|
name: webmock
|
|
189
202
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -198,6 +211,20 @@ dependencies:
|
|
|
198
211
|
- - ">="
|
|
199
212
|
- !ruby/object:Gem::Version
|
|
200
213
|
version: '0'
|
|
214
|
+
- !ruby/object:Gem::Dependency
|
|
215
|
+
name: yard
|
|
216
|
+
requirement: !ruby/object:Gem::Requirement
|
|
217
|
+
requirements:
|
|
218
|
+
- - ">="
|
|
219
|
+
- !ruby/object:Gem::Version
|
|
220
|
+
version: '0'
|
|
221
|
+
type: :development
|
|
222
|
+
prerelease: false
|
|
223
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
224
|
+
requirements:
|
|
225
|
+
- - ">="
|
|
226
|
+
- !ruby/object:Gem::Version
|
|
227
|
+
version: '0'
|
|
201
228
|
description: OmniAuth strategy for ChatWork
|
|
202
229
|
email:
|
|
203
230
|
- sue445@sue445.net
|
|
@@ -207,9 +234,15 @@ extra_rdoc_files: []
|
|
|
207
234
|
files:
|
|
208
235
|
- ".coveralls.yml"
|
|
209
236
|
- ".env.example"
|
|
237
|
+
- ".github/dependabot.yml"
|
|
238
|
+
- ".github/release.yml"
|
|
239
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
240
|
+
- ".github/workflows/pages.yml"
|
|
241
|
+
- ".github/workflows/release_gem.yml"
|
|
210
242
|
- ".github/workflows/test.yml"
|
|
211
243
|
- ".gitignore"
|
|
212
244
|
- ".rspec"
|
|
245
|
+
- ".yardopts"
|
|
213
246
|
- CHANGELOG.md
|
|
214
247
|
- Gemfile
|
|
215
248
|
- LICENSE.txt
|
|
@@ -217,6 +250,7 @@ files:
|
|
|
217
250
|
- Rakefile
|
|
218
251
|
- bin/console
|
|
219
252
|
- bin/setup
|
|
253
|
+
- gemfiles/common.gemfile
|
|
220
254
|
- gemfiles/omniauth_1.gemfile
|
|
221
255
|
- gemfiles/omniauth_2.gemfile
|
|
222
256
|
- lib/omniauth-chatwork.rb
|
|
@@ -231,8 +265,8 @@ metadata:
|
|
|
231
265
|
homepage_uri: https://github.com/sue445/omniauth-chatwork
|
|
232
266
|
source_code_uri: https://github.com/sue445/omniauth-chatwork
|
|
233
267
|
changelog_uri: https://github.com/sue445/omniauth-chatwork/blob/master/CHANGELOG.md
|
|
268
|
+
documentation_uri: https://sue445.github.io/omniauth-chatwork/
|
|
234
269
|
rubygems_mfa_required: 'true'
|
|
235
|
-
post_install_message:
|
|
236
270
|
rdoc_options: []
|
|
237
271
|
require_paths:
|
|
238
272
|
- lib
|
|
@@ -247,8 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
281
|
- !ruby/object:Gem::Version
|
|
248
282
|
version: '0'
|
|
249
283
|
requirements: []
|
|
250
|
-
rubygems_version:
|
|
251
|
-
signing_key:
|
|
284
|
+
rubygems_version: 4.0.16
|
|
252
285
|
specification_version: 4
|
|
253
286
|
summary: OmniAuth strategy for ChatWork
|
|
254
287
|
test_files: []
|