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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c39751ee7fba7ef0decd1a4049011c4d3f7d410ea37989126d36f0965ffa3881
4
- data.tar.gz: 9fb1aa0e42f03ed0bf1a6f6186c2525a95484549131857f088103e123c098442
3
+ metadata.gz: a4db725635b9904e089b7332986531351d70cf133eaa36af23e75c4bdd1746ef
4
+ data.tar.gz: 6ba30b5ac94f00ebf2a98e443247df2f5e3f58c8665583fdb75321b2059b4e93
5
5
  SHA512:
6
- metadata.gz: e50c5e808515ff5e5a72dd5c76f84112333a38e76ae56fa85f90a1c793f75652a313dbb868e6ba1f9092fb4b1472d80b1805ec8678095cd05ca3feeda52b3d99
7
- data.tar.gz: 146ab6a30320d8d246e8ee5c4b24e81c8d93788ceeb6babe37d293c2abcc39c878ab9c25ad540c4f8ad209e6e80684d6c060b053e7c6b07cbfd261167d0260e8
6
+ metadata.gz: bd329928bafb13f93266e0d96ba519d6e8df6a7866c6689c14273f600712baf8eb1a92ba6ebaeec1b09d2392d92436ea30973e2f6e0d0b83d3f76688297fc768
7
+ data.tar.gz: e56b1db819af97624f49631b2c01b0106ac1e2cde23a5d56616ce1c52e867b4107d6044655633f0dc5ce1422e476827d873e8d66213070b320af5515609add4a
@@ -23,12 +23,11 @@ Metrics/BlockNesting:
23
23
  Max: 2
24
24
 
25
25
  Layout/LineLength:
26
- AllowURI: true
27
- Enabled: false
26
+ Max: 120
28
27
 
29
28
  Metrics/MethodLength:
30
29
  CountComments: false
31
- Max: 15
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: 'collect'
43
- reduce: 'inject'
44
- find: 'detect'
45
- find_all: 'select'
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: hash_rockets
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
@@ -1,22 +1,28 @@
1
- # 0.2.0
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
- # 0.1.4
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
- # 0.1.3
17
+ ## 0.1.3
12
18
 
13
19
  - update README.
14
20
 
15
- # 0.1.2
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
- # 0.1.1
26
+ ## 0.1.1
21
27
 
22
28
  - Initial release
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
3
5
 
4
6
  RSpec::Core::RakeTask.new(:spec)
5
7
 
6
- task :default => :spec
8
+ task default: :spec
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Cybozu
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.1'
6
6
  end
7
7
  end
@@ -9,8 +9,8 @@ module OmniAuth
9
9
 
10
10
  option :skip_info, true
11
11
 
12
- option :client_options, :authorize_url => '/oauth2/authorization',
13
- :token_url => '/oauth2/token'
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.0
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-08-19 00:00:00.000000000 Z
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.0
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: