omniauth-tanita 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67c71fcde1ded3c9d27fb26a1028a8fd37683a2a37ec4c87c0f67a8216ab4d5b
4
- data.tar.gz: 9eb356c3eebaf921f90d02a3b156ca190635ceebe773ef11ad01329d6ae19de7
3
+ metadata.gz: 9eef96d05035d109a2a91b80964ace3e02d41e407b0cc54dd019616b1c2905b0
4
+ data.tar.gz: 74c4056c1cdbeb9e9feb37b4b52fb9e378dd1bbe04b9384a5a535a841365765a
5
5
  SHA512:
6
- metadata.gz: e61a27ed02d3d991857afbac59c0f5c97702d9eb7afb4d7600b59eccafcf6501b489c94c2b9d9adf7117d746106c6c99224c010542e67216009b8d96d32e2a6c
7
- data.tar.gz: ba7cc7f0c09f351a0fd45c75b5d834e51d3ac1ed389c211d744d0da9ece37ee80f98aa4450f6b6af34299daa7c75c364e0bd4e8f19688c07e9af3446851210e2
6
+ metadata.gz: 0fa761375b19f482f14914f641547e1eb1e9d756d322e73fb0ecb6fb95b3bb3a82b73d22d5423eda921f12cd7534b2b5ac13c8b4915e7bb8e64c245322b6327d
7
+ data.tar.gz: 2bcba2d681d74554a6138102bb626659377c11c9ca5c0e8142c2dc57fe2be8f46e1f80d0472125bc1964eb343eb2fd8a8526fbac1768a1246aa5497a0f223747
@@ -0,0 +1,36 @@
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
+ env:
36
+ 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}}
@@ -1,3 +1,8 @@
1
+ # 0.2.3
2
+
3
+ - refs #1 setup GitHub Actions for rspec and pushing to RubyGems.
4
+ - measure code coverage
5
+
1
6
  # 0.2.0
2
7
 
3
8
  - set default `provider_ignores_state` to true
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # OmniAuth::Tanita
2
2
 
3
+ [![Test](https://github.com/koshilife/omniauth-tanita/workflows/Test/badge.svg)](https://github.com/koshilife/omniauth-tanita/actions?query=workflow%3ATest)
4
+ [![codecov](https://codecov.io/gh/koshilife/omniauth-tanita/branch/master/graph/badge.svg)](https://codecov.io/gh/koshilife/omniauth-tanita)
3
5
  [![Gem Version](https://badge.fury.io/rb/omniauth-tanita.svg)](http://badge.fury.io/rb/omniauth-tanita)
6
+ [![license](https://img.shields.io/github/license/koshilife/omniauth-tanita)](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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module Tanita
5
- VERSION = '0.2.2'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
@@ -17,7 +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/'
20
+ spec.metadata['documentation_uri'] = "https://www.rubydoc.info/gems/omniauth-tanita/#{spec.version}"
21
21
 
22
22
  # Specify which files should be added to the gem when it is released.
23
23
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -32,6 +32,8 @@ Gem::Specification.new do |spec|
32
32
  spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.6.0'
33
33
 
34
34
  spec.add_development_dependency 'bundler', '~> 2.0'
35
+ spec.add_development_dependency 'codecov', '~> 0.1.17'
35
36
  spec.add_development_dependency 'rake', '~> 12.0'
36
37
  spec.add_development_dependency 'rspec', '~> 3.0'
38
+ spec.add_development_dependency 'simplecov', '~> 0.18.5'
37
39
  end
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.2.2
4
+ version: 0.2.3
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-05-13 00:00:00.000000000 Z
11
+ date: 2020-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tanita-api-client
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: codecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.1.17
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.1.17
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rake
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +94,20 @@ dependencies:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
96
  version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.18.5
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.18.5
83
111
  description: ''
84
112
  email:
85
113
  - koshikawa2009@gmail.com
@@ -87,6 +115,8 @@ executables: []
87
115
  extensions: []
88
116
  extra_rdoc_files: []
89
117
  files:
118
+ - ".github/workflows/gem-push.yml"
119
+ - ".github/workflows/test.yml"
90
120
  - ".gitignore"
91
121
  - ".rspec"
92
122
  - ".rubocop.yml"
@@ -110,7 +140,7 @@ metadata:
110
140
  homepage_uri: https://github.com/koshilife/omniauth-tanita
111
141
  source_code_uri: https://github.com/koshilife/omniauth-tanita
112
142
  changelog_uri: https://github.com/koshilife/omniauth-tanita/blob/master/CHANGELOG.md
113
- documentation_uri: https://www.rubydoc.info/gems/omniauth-tanita/
143
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-tanita/0.2.3
114
144
  post_install_message:
115
145
  rdoc_options: []
116
146
  require_paths:
@@ -126,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
156
  - !ruby/object:Gem::Version
127
157
  version: '0'
128
158
  requirements: []
129
- rubygems_version: 3.1.3
159
+ rubygems_version: 3.0.3
130
160
  signing_key:
131
161
  specification_version: 4
132
162
  summary: OmniAuth strategy for Tanita Health Planet