omniauth-tanita 0.1.1 → 0.3.0
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 +37 -0
 - data/.github/workflows/test.yml +21 -0
 - data/CHANGELOG.md +19 -1
 - data/README.md +22 -3
 - data/lib/omniauth-tanita/version.rb +2 -2
 - data/lib/omniauth/strategies/tanita.rb +9 -11
 - data/omniauth-tanita.gemspec +4 -2
 - metadata +30 -13
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: c720eafb34089a6565b1b6c19846520eb0b6ba2d2d8215cd54671ddb489f6145
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 16993aa8102c9b787db39b33b35c9aa7b7310035a1cf7cb6d3af195bda960a06
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 50fb40b4ac400bed6d328b8353df1b6f07b4f7a6ec4cccf1f55b5ef68c24d72149457e3ddf69d5246362fa0c8f112dee4d14d6f31f829bd6c9cd31d5b6b07de9
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 1f31056d34429a873f2bfe0204835d027b6dab946726fd98f36c024a2350759efc0339a56d6962124ad92602b8bc7c087f95d0cd980a8bb069cfd09ddfefb519
         
     | 
| 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 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 
     | 
    
         
            +
                    continue-on-error: true
         
     | 
| 
      
 36 
     | 
    
         
            +
                    env:
         
     | 
| 
      
 37 
     | 
    
         
            +
                      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
    
    | 
         @@ -1,4 +1,22 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # 0.3.0
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            - remove 'tanita-api-client' dependency.
         
     | 
| 
      
 4 
     | 
    
         
            +
            - rename module 'Omniauth' to 'OmniAuth'.
         
     | 
| 
      
 5 
     | 
    
         
            +
            - update gem-push GitHub Actions settings in order to ignore error for same version.
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            # 0.2.3
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            - refs #1 setup GitHub Actions for rspec and pushing to RubyGems.
         
     | 
| 
      
 10 
     | 
    
         
            +
            - measure code coverage
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            # 0.2.0
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            - set default `provider_ignores_state` to true
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            # 0.1.1
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            - Update dependent library 'tanita-api-client' to v0.2.3
         
     | 
| 
       1 
19 
     | 
    
         | 
| 
       2 
20 
     | 
    
         
             
            # 0.1.0
         
     | 
| 
       3 
21 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 22 
     | 
    
         
            +
            - Initial release
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -1,17 +1,18 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # OmniAuth::Tanita
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            [](https://github.com/koshilife/omniauth-tanita/actions?query=workflow%3ATest)
         
     | 
| 
      
 4 
     | 
    
         
            +
            [](https://codecov.io/gh/koshilife/omniauth-tanita)
         
     | 
| 
       3 
5 
     | 
    
         
             
            [](http://badge.fury.io/rb/omniauth-tanita)
         
     | 
| 
      
 6 
     | 
    
         
            +
            [](https://github.com/koshilife/omniauth-tanita/blob/master/LICENSE.txt)
         
     | 
| 
       4 
7 
     | 
    
         | 
| 
       5 
8 
     | 
    
         
             
            This gem contains the Tanita Health Planet strategy for OmniAuth.
         
     | 
| 
       6 
9 
     | 
    
         | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
10 
     | 
    
         
             
            ## Before You Begin
         
     | 
| 
       9 
11 
     | 
    
         | 
| 
       10 
12 
     | 
    
         
             
            You should have already installed OmniAuth into your app; if not, read the [OmniAuth README](https://github.com/intridea/omniauth) to get started.
         
     | 
| 
       11 
13 
     | 
    
         | 
| 
       12 
14 
     | 
    
         
             
            Now sign into the [Health Planet API Settings page](https://www.healthplanet.jp/apis_account.do) and create an application. Take note of your API keys.
         
     | 
| 
       13 
15 
     | 
    
         | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
16 
     | 
    
         
             
            ## Using This Strategy
         
     | 
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         
             
            First start by adding this gem to your Gemfile:
         
     | 
| 
         @@ -33,8 +34,8 @@ Rails.application.config.middleware.use OmniAuth::Builder do 
     | 
|
| 
       33 
34 
     | 
    
         
             
              provider :tanita, "API_KEY", "API_SECRET"
         
     | 
| 
       34 
35 
     | 
    
         
             
            end
         
     | 
| 
       35 
36 
     | 
    
         
             
            ```
         
     | 
| 
       36 
     | 
    
         
            -
            Replace `"API_KEY"` and `"API_SECRET"` with the appropriate values you obtained [earlier](https://www.healthplanet.jp/apis_account.do).
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
      
 38 
     | 
    
         
            +
            Replace `"API_KEY"` and `"API_SECRET"` with the appropriate values you obtained [earlier](https://www.healthplanet.jp/apis_account.do).
         
     | 
| 
       38 
39 
     | 
    
         | 
| 
       39 
40 
     | 
    
         
             
            ## Scopes
         
     | 
| 
       40 
41 
     | 
    
         | 
| 
         @@ -58,6 +59,24 @@ Rails.application.config.middleware.use OmniAuth::Builder do 
     | 
|
| 
       58 
59 
     | 
    
         
             
            end
         
     | 
| 
       59 
60 
     | 
    
         
             
            ```
         
     | 
| 
       60 
61 
     | 
    
         | 
| 
      
 62 
     | 
    
         
            +
            ## Auth Hash Example
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            The auth hash `request.env['omniauth.auth']` would look like this:
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            ```js
         
     | 
| 
      
 67 
     | 
    
         
            +
            {
         
     | 
| 
      
 68 
     | 
    
         
            +
                "provider": "tanita",
         
     | 
| 
      
 69 
     | 
    
         
            +
                "uid": null, // uid will be empty, because there is no apis to get.
         
     | 
| 
      
 70 
     | 
    
         
            +
                "credentials": {
         
     | 
| 
      
 71 
     | 
    
         
            +
                    "token": "ACCESS_TOKEN",
         
     | 
| 
      
 72 
     | 
    
         
            +
                    "refresh_token": "REFRESH_TOKEN",
         
     | 
| 
      
 73 
     | 
    
         
            +
                    "expires_at": 1581419031,
         
     | 
| 
      
 74 
     | 
    
         
            +
                    "expires": true
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                "extra": {}
         
     | 
| 
      
 77 
     | 
    
         
            +
            }
         
     | 
| 
      
 78 
     | 
    
         
            +
            ```
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
       61 
80 
     | 
    
         
             
            ## Contributing
         
     | 
| 
       62 
81 
     | 
    
         | 
| 
       63 
82 
     | 
    
         
             
            Bug reports and pull requests are welcome on [GitHub](https://github.com/koshilife/omniauth-tanita). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
         
     | 
| 
         @@ -1,27 +1,25 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # frozen_string_literal: true
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            require 'omniauth-oauth2'
         
     | 
| 
       4 
     | 
    
         
            -
            require 'tanita/api/client'
         
     | 
| 
       5 
4 
     | 
    
         | 
| 
       6 
5 
     | 
    
         
             
            module OmniAuth
         
     | 
| 
       7 
6 
     | 
    
         
             
              module Strategies
         
     | 
| 
       8 
     | 
    
         
            -
                 
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 7 
     | 
    
         
            +
                # OmniAuth strategy for Health Planet
         
     | 
| 
       10 
8 
     | 
    
         
             
                class Tanita < OmniAuth::Strategies::OAuth2
         
     | 
| 
       11 
9 
     | 
    
         
             
                  option :name, 'tanita'
         
     | 
| 
       12 
10 
     | 
    
         | 
| 
       13 
11 
     | 
    
         
             
                  option :skip_info, true
         
     | 
| 
      
 12 
     | 
    
         
            +
                  option :provider_ignores_state, true
         
     | 
| 
      
 13 
     | 
    
         
            +
                  option :scope, 'innerscan'
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
                  option :client_options, :site =>  
     | 
| 
       16 
     | 
    
         
            -
                           :authorize_url =>  
     | 
| 
       17 
     | 
    
         
            -
                           :token_url => TANITA::TOKEN_URL_PATH
         
     | 
| 
      
 15 
     | 
    
         
            +
                  option :client_options, :site => 'https://www.healthplanet.jp',
         
     | 
| 
      
 16 
     | 
    
         
            +
                           :authorize_url => '/oauth/auth'
         
     | 
| 
       18 
17 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
                  option :response_type, 'code'
         
     | 
| 
       21 
     | 
    
         
            -
                  option :scope, TANITA::Scope::INNERSCAN
         
     | 
| 
      
 18 
     | 
    
         
            +
                private
         
     | 
| 
       22 
19 
     | 
    
         | 
| 
       23 
     | 
    
         
            -
                   
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
      
 20 
     | 
    
         
            +
                  def callback_url
         
     | 
| 
      
 21 
     | 
    
         
            +
                    full_host + script_name + callback_path
         
     | 
| 
      
 22 
     | 
    
         
            +
                  end
         
     | 
| 
       25 
23 
     | 
    
         
             
                end
         
     | 
| 
       26 
24 
     | 
    
         
             
              end
         
     | 
| 
       27 
25 
     | 
    
         
             
            end
         
     | 
    
        data/omniauth-tanita.gemspec
    CHANGED
    
    | 
         @@ -4,7 +4,7 @@ require_relative 'lib/omniauth-tanita/version' 
     | 
|
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            Gem::Specification.new do |spec|
         
     | 
| 
       6 
6 
     | 
    
         
             
              spec.name          = 'omniauth-tanita'
         
     | 
| 
       7 
     | 
    
         
            -
              spec.version       =  
     | 
| 
      
 7 
     | 
    
         
            +
              spec.version       = OmniAuth::Tanita::VERSION
         
     | 
| 
       8 
8 
     | 
    
         
             
              spec.authors       = ['Kenji Koshikawa']
         
     | 
| 
       9 
9 
     | 
    
         
             
              spec.email         = ['koshikawa2009@gmail.com']
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
         @@ -17,6 +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-tanita'
         
     | 
| 
       19 
19 
     | 
    
         
             
              spec.metadata['changelog_uri'] = "#{spec.metadata['source_code_uri']}/blob/master/CHANGELOG.md"
         
     | 
| 
      
 20 
     | 
    
         
            +
              spec.metadata['documentation_uri'] = "https://www.rubydoc.info/gems/omniauth-tanita/#{spec.version}"
         
     | 
| 
       20 
21 
     | 
    
         | 
| 
       21 
22 
     | 
    
         
             
              # Specify which files should be added to the gem when it is released.
         
     | 
| 
       22 
23 
     | 
    
         
             
              # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
         
     | 
| 
         @@ -27,10 +28,11 @@ Gem::Specification.new do |spec| 
     | 
|
| 
       27 
28 
     | 
    
         
             
              spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
         
     | 
| 
       28 
29 
     | 
    
         
             
              spec.require_paths = ['lib']
         
     | 
| 
       29 
30 
     | 
    
         | 
| 
       30 
     | 
    
         
            -
              spec.add_runtime_dependency 'tanita-api-client', '~> 0.2.3'
         
     | 
| 
       31 
31 
     | 
    
         
             
              spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.6.0'
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
33 
     | 
    
         
             
              spec.add_development_dependency 'bundler', '~> 2.0'
         
     | 
| 
      
 34 
     | 
    
         
            +
              spec.add_development_dependency 'codecov', '~> 0.1.17'
         
     | 
| 
       34 
35 
     | 
    
         
             
              spec.add_development_dependency 'rake', '~> 12.0'
         
     | 
| 
       35 
36 
     | 
    
         
             
              spec.add_development_dependency 'rspec', '~> 3.0'
         
     | 
| 
      
 37 
     | 
    
         
            +
              spec.add_development_dependency 'simplecov', '~> 0.18.5'
         
     | 
| 
       36 
38 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,57 +1,57 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: omniauth-tanita
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.3.0
         
     | 
| 
       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-10 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
     | 
    
         
            -
              name:  
     | 
| 
      
 14 
     | 
    
         
            +
              name: omniauth-oauth2
         
     | 
| 
       15 
15 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version:  
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 1.6.0
         
     | 
| 
       20 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       21 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
24 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       25 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version:  
     | 
| 
      
 26 
     | 
    
         
            +
                    version: 1.6.0
         
     | 
| 
       27 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
     | 
    
         
            -
              name:  
     | 
| 
      
 28 
     | 
    
         
            +
              name: bundler
         
     | 
| 
       29 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
31 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version:  
     | 
| 
       34 
     | 
    
         
            -
              type: : 
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
       35 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
38 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       39 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version:  
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
       41 
41 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
     | 
    
         
            -
              name:  
     | 
| 
      
 42 
     | 
    
         
            +
              name: codecov
         
     | 
| 
       43 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
44 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
45 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       46 
46 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version:  
     | 
| 
      
 47 
     | 
    
         
            +
                    version: 0.1.17
         
     | 
| 
       48 
48 
     | 
    
         
             
              type: :development
         
     | 
| 
       49 
49 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       50 
50 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
52 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       53 
53 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
     | 
    
         
            -
                    version:  
     | 
| 
      
 54 
     | 
    
         
            +
                    version: 0.1.17
         
     | 
| 
       55 
55 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
56 
     | 
    
         
             
              name: rake
         
     | 
| 
       57 
57 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -80,6 +80,20 @@ dependencies: 
     | 
|
| 
       80 
80 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       81 
81 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       82 
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
         
     | 
| 
       83 
97 
     | 
    
         
             
            description: ''
         
     | 
| 
       84 
98 
     | 
    
         
             
            email:
         
     | 
| 
       85 
99 
     | 
    
         
             
            - koshikawa2009@gmail.com
         
     | 
| 
         @@ -87,6 +101,8 @@ executables: [] 
     | 
|
| 
       87 
101 
     | 
    
         
             
            extensions: []
         
     | 
| 
       88 
102 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       89 
103 
     | 
    
         
             
            files:
         
     | 
| 
      
 104 
     | 
    
         
            +
            - ".github/workflows/gem-push.yml"
         
     | 
| 
      
 105 
     | 
    
         
            +
            - ".github/workflows/test.yml"
         
     | 
| 
       90 
106 
     | 
    
         
             
            - ".gitignore"
         
     | 
| 
       91 
107 
     | 
    
         
             
            - ".rspec"
         
     | 
| 
       92 
108 
     | 
    
         
             
            - ".rubocop.yml"
         
     | 
| 
         @@ -110,6 +126,7 @@ metadata: 
     | 
|
| 
       110 
126 
     | 
    
         
             
              homepage_uri: https://github.com/koshilife/omniauth-tanita
         
     | 
| 
       111 
127 
     | 
    
         
             
              source_code_uri: https://github.com/koshilife/omniauth-tanita
         
     | 
| 
       112 
128 
     | 
    
         
             
              changelog_uri: https://github.com/koshilife/omniauth-tanita/blob/master/CHANGELOG.md
         
     | 
| 
      
 129 
     | 
    
         
            +
              documentation_uri: https://www.rubydoc.info/gems/omniauth-tanita/0.3.0
         
     | 
| 
       113 
130 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       114 
131 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       115 
132 
     | 
    
         
             
            require_paths:
         
     | 
| 
         @@ -125,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       125 
142 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       126 
143 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       127 
144 
     | 
    
         
             
            requirements: []
         
     | 
| 
       128 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 145 
     | 
    
         
            +
            rubygems_version: 3.0.3
         
     | 
| 
       129 
146 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       130 
147 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       131 
148 
     | 
    
         
             
            summary: OmniAuth strategy for Tanita Health Planet
         
     |