omniauth-calendly 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: 0224efdc8167465b506edfd5b26150c043978289b475769bd29b1134135377f9
4
- data.tar.gz: 720dd99b7cb5f60e7e335e2dbf633532766e168bce948b805268a4b8ca401589
3
+ metadata.gz: 52d954de4756eb07b9c1843565bef9f7e4559bb852a639459fed05ab318914a2
4
+ data.tar.gz: e5961a4453253e5ea7c661c6571f5b8493b499117229c0382b2afa1ea1fd4e10
5
5
  SHA512:
6
- metadata.gz: 4be26ce0f04f8ead6b42b2a3ac2d660534d46722ac71cd794e38b07d4cf0c104800b39d408f9f2d5ac50bf2d932ff7b67abdedf850afbacfc84c1e33400ca1ea
7
- data.tar.gz: b3b7a6a3a5470beff93a3f4267bf0a27c765c10f3f6f297f8887d3c040dd94c37bfd2f26c48ccb8b07bf0b9c0fecfd55e96a937aabf5568ef25ef8c3e1585c40
6
+ metadata.gz: eebea8963c22d71076bea4c39ebb7cc7fa00b1772f7aef8d2e9c0405b877975b89c3922831872b44bd5edc2060c960f50e806694e20ea3d9d9014783f5719655
7
+ data.tar.gz: '0735718be28275f9be8a86fd153323da09c324004bafe75645e4645c72a257dcc5f1d2ada346bd0824264d0954fccb0559ec894969805e87bf38cf7997d394e9'
@@ -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
@@ -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
68
  EnforcedStyle: compact
69
+
70
+ Style/AsciiComments:
71
+ Enabled: false
@@ -1,13 +1,19 @@
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 #5 fix dependencies.
4
10
  - remove minitest-reporter.
5
11
 
6
- # 0.1.0
12
+ ## 0.1.0
7
13
 
8
14
  - #1 extract uid from user api response.
9
15
  - #2 make coverage 100%.
10
16
 
11
- # 0.0.1.alpha
17
+ ## 0.0.1.alpha
12
18
 
13
19
  - Initial release
data/Rakefile CHANGED
@@ -9,4 +9,4 @@ Rake::TestTask.new(:test) do |t|
9
9
  t.test_files = FileList['test/**/*_test.rb']
10
10
  end
11
11
 
12
- task :default => :test
12
+ task default: :test
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Calendly
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.1'
6
6
  end
7
7
  end
@@ -7,12 +7,12 @@ module OmniAuth
7
7
  # OmniAuth strategy for Calendly
8
8
  class Calendly < OmniAuth::Strategies::OAuth2
9
9
  option :name, 'calendly'
10
- option :client_options, :site => 'https://auth.calendly.com'
10
+ option :client_options, site: 'https://auth.calendly.com'
11
11
 
12
12
  USER_API_URL = 'https://api.calendly.com/users/'
13
13
 
14
14
  uid { extract_uid }
15
- extra { {:raw_info => raw_info} }
15
+ extra { {raw_info: raw_info} }
16
16
 
17
17
  private
18
18
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-calendly
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
@@ -166,7 +166,7 @@ metadata:
166
166
  homepage_uri: https://github.com/koshilife/omniauth-calendly
167
167
  source_code_uri: https://github.com/koshilife/omniauth-calendly
168
168
  changelog_uri: https://github.com/koshilife/omniauth-calendly/blob/master/CHANGELOG.md
169
- documentation_uri: https://www.rubydoc.info/gems/omniauth-calendly/0.2.0
169
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-calendly/0.2.1
170
170
  post_install_message:
171
171
  rdoc_options: []
172
172
  require_paths: