omniauth-cybozu 0.1.1 → 0.1.2
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/workflows/gem-push.yml +36 -0
- data/.github/workflows/test.yml +21 -0
- data/CHANGELOG.md +5 -0
- data/README.md +4 -1
- data/lib/omniauth-cybozu/version.rb +1 -1
- data/omniauth-cybozu.gemspec +3 -1
- metadata +34 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 382b81e1ffb2a0707723628216784ca95847dd6d04738458c5b6f7f5abf89278
|
|
4
|
+
data.tar.gz: 370cd9eaed07fb8613a603374341ca7ab67f39d482f13b4e19501848af0e426a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9b675a40bc13929142e28340d96cfa1df4470ec33ca503adc984488e4060caae9c67df9d18c5fa3afaa2394fb3210fc4b5d2436e6d34d8bb2abeb0a9e96392a
|
|
7
|
+
data.tar.gz: 4872ccd16e857a2e6b5d15cb6752ddafb6cea8f08215967e66e71cd2e02ca83132d3f7fa07f7b01dce4cb29e522e46632d93f360e324dbd9c72af280cec11134
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Ruby Gem
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [master]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
build:
|
|
9
|
+
name: Build + Publish
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v2
|
|
14
|
+
- name: Set up Ruby 2.6
|
|
15
|
+
uses: actions/setup-ruby@v1
|
|
16
|
+
with:
|
|
17
|
+
ruby-version: 2.6
|
|
18
|
+
|
|
19
|
+
- name: Build and test
|
|
20
|
+
run: |
|
|
21
|
+
gem install bundler
|
|
22
|
+
bundle install --jobs 4 --retry 3
|
|
23
|
+
bundle exec rspec
|
|
24
|
+
env:
|
|
25
|
+
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
|
|
26
|
+
|
|
27
|
+
- name: Publish to RubyGems
|
|
28
|
+
run: |
|
|
29
|
+
mkdir -p $HOME/.gem
|
|
30
|
+
touch $HOME/.gem/credentials
|
|
31
|
+
chmod 0600 $HOME/.gem/credentials
|
|
32
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
33
|
+
gem build *.gemspec
|
|
34
|
+
gem push *.gem
|
|
35
|
+
env:
|
|
36
|
+
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Test
|
|
2
|
+
|
|
3
|
+
on: pull_request
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v2
|
|
11
|
+
- name: Set up Ruby
|
|
12
|
+
uses: ruby/setup-ruby@v1
|
|
13
|
+
with:
|
|
14
|
+
ruby-version: 2.6
|
|
15
|
+
- name: Build and test
|
|
16
|
+
run: |
|
|
17
|
+
gem install bundler
|
|
18
|
+
bundle install --jobs 4 --retry 3
|
|
19
|
+
bundle exec rspec
|
|
20
|
+
env:
|
|
21
|
+
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Omniauth::Cybozu
|
|
2
2
|
|
|
3
|
+
[](https://github.com/koshilife/omniauth-cybozu/actions?query=workflow%3ATest)
|
|
4
|
+
[](https://codecov.io/gh/koshilife/omniauth-cybozu)
|
|
3
5
|
[](http://badge.fury.io/rb/omniauth-cybozu)
|
|
6
|
+
[](https://github.com/koshilife/omniauth-cybozu/blob/master/LICENSE.txt)
|
|
4
7
|
|
|
5
8
|
This gem contains [Kintone](https://www.kintone.com/) and [Garoon](https://garoon.cybozu.co.jp/) strategy for OmniAuth.
|
|
6
9
|
|
|
@@ -39,7 +42,7 @@ Rails.application.config.middleware.use OmniAuth::Builder do
|
|
|
39
42
|
# Garoon schedules writable
|
|
40
43
|
cybozu_site = 'https://{subdomain}.cybozu.com'
|
|
41
44
|
cybozu_scope = ['g:schedule:read', 'g:schedule:write'].join(' ')
|
|
42
|
-
provider :cybozu, "CLIENT_ID", "CLIENT_SECRET", :
|
|
45
|
+
provider :cybozu, "CLIENT_ID", "CLIENT_SECRET", { scope: cybozu_scope, client_options: { site: cybozu_site }}
|
|
43
46
|
|
|
44
47
|
end
|
|
45
48
|
```
|
data/omniauth-cybozu.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
18
18
|
spec.metadata['source_code_uri'] = 'https://github.com/koshilife/omniauth-cybozu'
|
|
19
19
|
spec.metadata['changelog_uri'] = "#{spec.metadata['source_code_uri']}/blob/master/CHANGELOG.md"
|
|
20
|
-
spec.metadata['documentation_uri'] =
|
|
20
|
+
spec.metadata['documentation_uri'] = "https://www.rubydoc.info/gems/omniauth-cybozu/#{spec.version}"
|
|
21
21
|
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
@@ -30,6 +30,8 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
|
|
31
31
|
spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.6.0'
|
|
32
32
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
|
33
|
+
spec.add_development_dependency 'codecov', '~> 0.1.17'
|
|
33
34
|
spec.add_development_dependency 'rake', '~> 12.0'
|
|
34
35
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
36
|
+
spec.add_development_dependency 'simplecov', '~> 0.18.5'
|
|
35
37
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-cybozu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenji Koshikawa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth-oauth2
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '2.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: codecov
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.1.17
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.1.17
|
|
41
55
|
- !ruby/object:Gem::Dependency
|
|
42
56
|
name: rake
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,6 +80,20 @@ dependencies:
|
|
|
66
80
|
- - "~>"
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
82
|
version: '3.0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: simplecov
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.18.5
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.18.5
|
|
69
97
|
description: ''
|
|
70
98
|
email:
|
|
71
99
|
- koshikawa2009@gmail.com
|
|
@@ -73,6 +101,8 @@ executables: []
|
|
|
73
101
|
extensions: []
|
|
74
102
|
extra_rdoc_files: []
|
|
75
103
|
files:
|
|
104
|
+
- ".github/workflows/gem-push.yml"
|
|
105
|
+
- ".github/workflows/test.yml"
|
|
76
106
|
- ".gitignore"
|
|
77
107
|
- ".rspec"
|
|
78
108
|
- ".rubocop.yml"
|
|
@@ -96,7 +126,7 @@ metadata:
|
|
|
96
126
|
homepage_uri: https://github.com/koshilife/omniauth-cybozu
|
|
97
127
|
source_code_uri: https://github.com/koshilife/omniauth-cybozu
|
|
98
128
|
changelog_uri: https://github.com/koshilife/omniauth-cybozu/blob/master/CHANGELOG.md
|
|
99
|
-
documentation_uri: https://www.rubydoc.info/gems/omniauth-cybozu/
|
|
129
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-cybozu/0.1.2
|
|
100
130
|
post_install_message:
|
|
101
131
|
rdoc_options: []
|
|
102
132
|
require_paths:
|
|
@@ -112,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
142
|
- !ruby/object:Gem::Version
|
|
113
143
|
version: '0'
|
|
114
144
|
requirements: []
|
|
115
|
-
rubygems_version: 3.
|
|
145
|
+
rubygems_version: 3.0.3
|
|
116
146
|
signing_key:
|
|
117
147
|
specification_version: 4
|
|
118
148
|
summary: OmniAuth strategy for cybozu(Kintone and Garoon)
|