omniauth-dingtalk-oauth2 1.0.0 → 1.0.1

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: 7cc2eaabeef1b8731ca13cdf7987e0e8a5cd02c9e1cc2510d5e4c9e6e476c296
4
- data.tar.gz: 9ef3f856e17fe00e03eed568d7662f24c780e4fc2a779b162f68d2076721a46a
3
+ metadata.gz: 41f0be49b80573c5dd3e0723cb60a35625a1cddc9efcbf7d6ce08249b839394c
4
+ data.tar.gz: 3788ef307eed062a280e65e9b7e8446fcadd2fc192125b26feb5f7ae91cebb7b
5
5
  SHA512:
6
- metadata.gz: 0f0e2d01e7a12560d9897adef1acb348cd7bc1fb021425547fe88efa9c2582f7b7e41e566110612eb0dc43f329dce9082ac0fa789b9e35d10f9022af16928e33
7
- data.tar.gz: c97739e9f2def1ecac2e2be28b1e32443cf8a01d4786994651158a205a67b893fb9c7316e01e617ecd97b58dcd83d94a60e4c7080628a1fd90d803cb354eb014
6
+ metadata.gz: 6e6f10864ab4582bceab0c7b54b9740e01ebcde1b870e661cb62a2c287ab355f8017fbe64c24753435e2cbef9fdcef90a15df0cf128fa190293957ef275c74ad
7
+ data.tar.gz: 45658f6affda60d9952c74c49beb12c5effdc4da0a8587b35865315978c2a1c19a5b030f5119c005a27eb6dd2d4700e660fbf76a265fa5db9d987e9827cc2c0a
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,21 @@
1
+ stages:
2
+ - test
3
+
4
+ .base:
5
+ image: ruby:2.7.5
6
+ cache:
7
+ key: gems_and_packages
8
+ paths:
9
+ - apt-cache/
10
+ - vendor/ruby
11
+ policy: pull
12
+ before_script:
13
+ - ruby -v
14
+ - gem install bundler --no-document
15
+ - bundle install --path=vendor/ruby
16
+
17
+ test:rspec:
18
+ extends: .base
19
+ stage: test
20
+ script:
21
+ - bundle exec rspec
data/Gemfile CHANGED
@@ -1,7 +1,3 @@
1
1
  source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
-
5
- gem "rake", "~> 12.0"
6
- gem "rspec", "~> 3.0"
7
- gem "byebug"
data/Gemfile.lock CHANGED
@@ -1,33 +1,36 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-dingtalk-oauth2 (1.0.0)
5
- omniauth-oauth2
4
+ omniauth-dingtalk-oauth2 (1.0.1)
5
+ omniauth-oauth2 (~> 1.7)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- byebug (11.1.3)
11
- diff-lcs (1.4.4)
12
- faraday (1.8.0)
10
+ diff-lcs (1.5.0)
11
+ faraday (1.10.0)
13
12
  faraday-em_http (~> 1.0)
14
13
  faraday-em_synchrony (~> 1.0)
15
14
  faraday-excon (~> 1.1)
16
- faraday-httpclient (~> 1.0.1)
15
+ faraday-httpclient (~> 1.0)
16
+ faraday-multipart (~> 1.0)
17
17
  faraday-net_http (~> 1.0)
18
- faraday-net_http_persistent (~> 1.1)
18
+ faraday-net_http_persistent (~> 1.0)
19
19
  faraday-patron (~> 1.0)
20
20
  faraday-rack (~> 1.0)
21
- multipart-post (>= 1.2, < 3)
21
+ faraday-retry (~> 1.0)
22
22
  ruby2_keywords (>= 0.0.4)
23
23
  faraday-em_http (1.0.0)
24
24
  faraday-em_synchrony (1.0.0)
25
25
  faraday-excon (1.1.0)
26
26
  faraday-httpclient (1.0.1)
27
+ faraday-multipart (1.0.3)
28
+ multipart-post (>= 1.2, < 3)
27
29
  faraday-net_http (1.0.1)
28
30
  faraday-net_http_persistent (1.2.0)
29
31
  faraday-patron (1.0.0)
30
32
  faraday-rack (1.0.0)
33
+ faraday-retry (1.0.3)
31
34
  hashie (4.1.0)
32
35
  jwt (2.3.0)
33
36
  multi_json (1.15.0)
@@ -50,29 +53,28 @@ GEM
50
53
  rack-protection (2.1.0)
51
54
  rack
52
55
  rake (12.3.3)
53
- rspec (3.10.0)
54
- rspec-core (~> 3.10.0)
55
- rspec-expectations (~> 3.10.0)
56
- rspec-mocks (~> 3.10.0)
57
- rspec-core (3.10.1)
58
- rspec-support (~> 3.10.0)
59
- rspec-expectations (3.10.1)
56
+ rspec (3.11.0)
57
+ rspec-core (~> 3.11.0)
58
+ rspec-expectations (~> 3.11.0)
59
+ rspec-mocks (~> 3.11.0)
60
+ rspec-core (3.11.0)
61
+ rspec-support (~> 3.11.0)
62
+ rspec-expectations (3.11.0)
60
63
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.10.0)
62
- rspec-mocks (3.10.2)
64
+ rspec-support (~> 3.11.0)
65
+ rspec-mocks (3.11.0)
63
66
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.10.0)
65
- rspec-support (3.10.2)
67
+ rspec-support (~> 3.11.0)
68
+ rspec-support (3.11.0)
66
69
  ruby2_keywords (0.0.5)
67
70
 
68
71
  PLATFORMS
69
72
  ruby
70
73
 
71
74
  DEPENDENCIES
72
- byebug
73
75
  omniauth-dingtalk-oauth2!
74
76
  rake (~> 12.0)
75
77
  rspec (~> 3.0)
76
78
 
77
79
  BUNDLED WITH
78
- 2.1.4
80
+ 2.2.31
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Dingtalk
5
- VERSION = '1.0.0'
5
+ VERSION = '1.0.1'
6
6
  end
7
7
  end
@@ -23,5 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
24
  spec.require_paths = ["lib"]
25
25
 
26
- spec.add_dependency 'omniauth-oauth2', '~> 1.7.1'
26
+ spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.7'
27
+
28
+ spec.add_development_dependency 'rake', '~> 12.0'
29
+ spec.add_development_dependency 'rspec', '~> 3.0'
27
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-dingtalk-oauth2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - JiHu(GitLab)
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-oauth2
@@ -16,14 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.7.1
19
+ version: '1.7'
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: 1.7.1
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
27
55
  description: Wrapper the DingTalk Oauth2 API
28
56
  email:
29
57
  - dev@jihulab.com
@@ -32,6 +60,7 @@ extensions: []
32
60
  extra_rdoc_files: []
33
61
  files:
34
62
  - ".gitignore"
63
+ - ".gitlab-ci.yml"
35
64
  - ".rspec"
36
65
  - Gemfile
37
66
  - Gemfile.lock