omniauth-cybozu 0.2.0 → 0.2.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 +4 -4
- data/.rubocop.yml +11 -9
- data/CHANGELOG.md +11 -5
- data/Rakefile +5 -3
- data/lib/omniauth-cybozu/version.rb +1 -1
- data/lib/omniauth/strategies/cybozu.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4db725635b9904e089b7332986531351d70cf133eaa36af23e75c4bdd1746ef
|
|
4
|
+
data.tar.gz: 6ba30b5ac94f00ebf2a98e443247df2f5e3f58c8665583fdb75321b2059b4e93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd329928bafb13f93266e0d96ba519d6e8df6a7866c6689c14273f600712baf8eb1a92ba6ebaeec1b09d2392d92436ea30973e2f6e0d0b83d3f76688297fc768
|
|
7
|
+
data.tar.gz: e56b1db819af97624f49631b2c01b0106ac1e2cde23a5d56616ce1c52e867b4107d6044655633f0dc5ce1422e476827d873e8d66213070b320af5515609add4a
|
data/.rubocop.yml
CHANGED
|
@@ -23,12 +23,11 @@ Metrics/BlockNesting:
|
|
|
23
23
|
Max: 2
|
|
24
24
|
|
|
25
25
|
Layout/LineLength:
|
|
26
|
-
|
|
27
|
-
Enabled: false
|
|
26
|
+
Max: 120
|
|
28
27
|
|
|
29
28
|
Metrics/MethodLength:
|
|
30
29
|
CountComments: false
|
|
31
|
-
Max:
|
|
30
|
+
Max: 20
|
|
32
31
|
|
|
33
32
|
Metrics/ParameterLists:
|
|
34
33
|
Max: 4
|
|
@@ -39,10 +38,10 @@ Metrics/AbcSize:
|
|
|
39
38
|
|
|
40
39
|
Style/CollectionMethods:
|
|
41
40
|
PreferredMethods:
|
|
42
|
-
map:
|
|
43
|
-
reduce:
|
|
44
|
-
find:
|
|
45
|
-
find_all:
|
|
41
|
+
map: "collect"
|
|
42
|
+
reduce: "inject"
|
|
43
|
+
find: "detect"
|
|
44
|
+
find_all: "select"
|
|
46
45
|
|
|
47
46
|
Style/Documentation:
|
|
48
47
|
Enabled: false
|
|
@@ -60,10 +59,13 @@ Style/ExpandPathArguments:
|
|
|
60
59
|
Enabled: false
|
|
61
60
|
|
|
62
61
|
Style/HashSyntax:
|
|
63
|
-
EnforcedStyle:
|
|
62
|
+
EnforcedStyle: ruby19
|
|
64
63
|
|
|
65
64
|
Style/Lambda:
|
|
66
65
|
Enabled: false
|
|
67
66
|
|
|
68
67
|
Style/RaiseArgs:
|
|
69
|
-
EnforcedStyle: compact
|
|
68
|
+
EnforcedStyle: compact
|
|
69
|
+
|
|
70
|
+
Style/AsciiComments:
|
|
71
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,28 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CHANGELOG
|
|
2
|
+
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
- fix rubocop warnings.
|
|
6
|
+
|
|
7
|
+
## 0.2.0
|
|
2
8
|
|
|
3
9
|
- refs #7 fix dependencies.
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
## 0.1.4
|
|
6
12
|
|
|
7
13
|
- rename module 'Omniauth' to 'OmniAuth'.
|
|
8
14
|
- make callback_url method private method.
|
|
9
15
|
- update gem-push GitHub Actions settings in order to ignore error for same version.
|
|
10
16
|
|
|
11
|
-
|
|
17
|
+
## 0.1.3
|
|
12
18
|
|
|
13
19
|
- update README.
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
## 0.1.2
|
|
16
22
|
|
|
17
23
|
- refs #1 setup GitHub Actions for rspec and pushing to RubyGems.
|
|
18
24
|
- measure code coverage.
|
|
19
25
|
|
|
20
|
-
|
|
26
|
+
## 0.1.1
|
|
21
27
|
|
|
22
28
|
- Initial release
|
data/Rakefile
CHANGED
|
@@ -9,8 +9,8 @@ module OmniAuth
|
|
|
9
9
|
|
|
10
10
|
option :skip_info, true
|
|
11
11
|
|
|
12
|
-
option :client_options, :
|
|
13
|
-
:
|
|
12
|
+
option :client_options, authorize_url: '/oauth2/authorization',
|
|
13
|
+
token_url: '/oauth2/token'
|
|
14
14
|
|
|
15
15
|
private
|
|
16
16
|
|
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.2.
|
|
4
|
+
version: 0.2.1
|
|
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-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth-oauth2
|
|
@@ -125,7 +125,7 @@ metadata:
|
|
|
125
125
|
homepage_uri: https://github.com/koshilife/omniauth-cybozu
|
|
126
126
|
source_code_uri: https://github.com/koshilife/omniauth-cybozu
|
|
127
127
|
changelog_uri: https://github.com/koshilife/omniauth-cybozu/blob/master/CHANGELOG.md
|
|
128
|
-
documentation_uri: https://www.rubydoc.info/gems/omniauth-cybozu/0.2.
|
|
128
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-cybozu/0.2.1
|
|
129
129
|
post_install_message:
|
|
130
130
|
rdoc_options: []
|
|
131
131
|
require_paths:
|