omniauth-tanita 0.4.0 → 0.4.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: 3ba22682ade5a3ac1076bfa1df775743a4dcd75c9a09b04e3c05a0e3a91d2329
4
- data.tar.gz: a66cf2bb9a329eb9f751340cbcaaca6eb49c4bb6402e46762c84854fb03b4639
3
+ metadata.gz: 65cae172f6ce947846c01f197bb218e620a22490d5440a601d1cd45fac932dd0
4
+ data.tar.gz: 20ed6d214685fbe4e4bcf9f1932205c3717124db96291792c66d9b60a6f2bb01
5
5
  SHA512:
6
- metadata.gz: bdff4c2dff1f08df8e48d21d7746b44c5f7282a49e1d6e5d3e6174741beb8d363a35a3f780584740917580da757032dab460583d244fc201be6ff00f0d5e5f3f
7
- data.tar.gz: 995094eadfa8eb06e62d52e6531161863e89634aa7c6a3654160d8aed3c4746f09b72ccfbfa06616abf2b3260d801d3e518244a52e6b55ab60bf4b319e362e1a
6
+ metadata.gz: d57d96950c1ed739291d69e74083e20556686715bcbcdd61091d723443756a2cc3a81e93857066a8201d5e1ca2e7c4bfd94079fd69d3d7074dc5da69df7d4e9b
7
+ data.tar.gz: 0ca81fbb94eec66a083484524c274ffc7526cb223d107b4eeb0e6a4735c879858cbb2a067b55b609081b29fe6cf966f213fdc9321e7f1a22e833af988d1020b9
@@ -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,26 +1,32 @@
1
- # 0.4.0
1
+ # CHANGELOG
2
+
3
+ ## 0.4.1
4
+
5
+ - fix rubocop warnings.
6
+
7
+ ## 0.4.0
2
8
 
3
9
  - refs #7 fix dependencies.
4
10
 
5
- # 0.3.0
11
+ ## 0.3.0
6
12
 
7
13
  - remove 'tanita-api-client' dependency.
8
14
  - rename module 'Omniauth' to 'OmniAuth'.
9
15
  - update gem-push GitHub Actions settings in order to ignore error for same version.
10
16
 
11
- # 0.2.3
17
+ ## 0.2.3
12
18
 
13
19
  - refs #1 setup GitHub Actions for rspec and pushing to RubyGems.
14
20
  - measure code coverage
15
21
 
16
- # 0.2.0
22
+ ## 0.2.0
17
23
 
18
24
  - set default `provider_ignores_state` to true
19
25
 
20
- # 0.1.1
26
+ ## 0.1.1
21
27
 
22
28
  - Update dependent library 'tanita-api-client' to v0.2.3
23
29
 
24
- # 0.1.0
30
+ ## 0.1.0
25
31
 
26
32
  - 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 Tanita
5
- VERSION = '0.4.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
@@ -12,8 +12,8 @@ module OmniAuth
12
12
  option :provider_ignores_state, true
13
13
  option :scope, 'innerscan'
14
14
 
15
- option :client_options, :site => 'https://www.healthplanet.jp',
16
- :authorize_url => '/oauth/auth'
15
+ option :client_options, site: 'https://www.healthplanet.jp',
16
+ authorize_url: '/oauth/auth'
17
17
 
18
18
  private
19
19
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-tanita
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.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-tanita
126
126
  source_code_uri: https://github.com/koshilife/omniauth-tanita
127
127
  changelog_uri: https://github.com/koshilife/omniauth-tanita/blob/master/CHANGELOG.md
128
- documentation_uri: https://www.rubydoc.info/gems/omniauth-tanita/0.4.0
128
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-tanita/0.4.1
129
129
  post_install_message:
130
130
  rdoc_options: []
131
131
  require_paths: