omniauth-workable 0.1.3 → 0.2.0

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: ca96e909b8bcf3050bf8f1f85b50f5ca266e2daabbe88acb109ae54cba3d8143
4
- data.tar.gz: a8fb960a9ea63a1ed718bba57e7cbd783112f4e0110efc49efa4093b243f2cd1
3
+ metadata.gz: 2c9880a682edbe74c46f0d28139f4e1f2e5347a7ee9d3119008427869fd9103f
4
+ data.tar.gz: f833df5643d19d83f090a65b15621880a29d22f1d455777d57e366282f9a0b34
5
5
  SHA512:
6
- metadata.gz: 9eda755b54bf92e2fcbb37b8f901b19d26fa3a9608d3b10cbdfaf610d8d15ab908b650b3eb6f3ffa680088b4a83b6270487d0cbc8b5420c2c4a81549d93d9435
7
- data.tar.gz: ed5051adbe5debbe078e549f4b0f99817672d0d2661462074b11ea3a640f5a8012aad0b65196d50951e78cd8e82a6b59c243a16a38b8ae304cd3673ec8787573
6
+ metadata.gz: 3ea2952f883819a98c965cdecbf85e5a16f18875e7ab1316bc19087d01d1157c9cb5f24b992e457e59fb8334b1c587310f011aa9cefb48ecc86fbc8828077262
7
+ data.tar.gz: b02061ed24fd846389ce8592f0bba623854f1303dc31cbc116fffbf04d7ad6ead2ed43536c4c1504e645067a340388cf728e76590ac93f2b64493dbc7f032462
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://www.github.com/ScreenLoop/omniauth-workable/compare/v0.1.3...v0.2.0) (2022-12-12)
4
+
5
+
6
+ ### Features
7
+
8
+ * update default_scope to include w_comments. ([8d710ab](https://www.github.com/ScreenLoop/omniauth-workable/commit/8d710abd1b97a04014b83409e7df5cdf6e25a70c))
9
+
3
10
  ### [0.1.3](https://www.github.com/ScreenLoop/omniauth-workable/compare/v0.1.2...v0.1.3) (2022-10-18)
4
11
 
5
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-workable (0.1.3)
4
+ omniauth-workable (0.2.0)
5
5
  omniauth (~> 2.0)
6
6
  omniauth-oauth2 (~> 1.7.1)
7
7
 
@@ -10,10 +10,10 @@ GEM
10
10
  specs:
11
11
  ast (2.4.2)
12
12
  diff-lcs (1.4.4)
13
- faraday (2.6.0)
13
+ faraday (2.7.1)
14
14
  faraday-net_http (>= 2.0, < 3.1)
15
15
  ruby2_keywords (>= 0.0.4)
16
- faraday-net_http (3.0.1)
16
+ faraday-net_http (3.0.2)
17
17
  hashie (5.0.0)
18
18
  jwt (2.5.0)
19
19
  multi_xml (0.6.0)
@@ -34,8 +34,8 @@ GEM
34
34
  parallel (1.20.1)
35
35
  parser (3.0.2.0)
36
36
  ast (~> 2.4.1)
37
- rack (3.0.0)
38
- rack-protection (3.0.2)
37
+ rack (3.0.2)
38
+ rack-protection (3.0.4)
39
39
  rack
40
40
  rainbow (3.0.0)
41
41
  rake (12.3.3)
@@ -10,9 +10,7 @@ module OmniAuth
10
10
  class Workable < OmniAuth::Strategies::OAuth2
11
11
  DEFAULT_RESOURCE = 'user'
12
12
  DEFAULT_RESPONSE_TYPE = 'code'
13
- DEFAULT_SCOPE = 'r_candidates r_jobs'
14
- # Uncomment the line below and remove the line above as soon as the workable team releases the w_comment scope
15
- # DEFAULT_SCOPE = 'r_candidates r_jobs w_comments'
13
+ DEFAULT_SCOPE = 'r_candidates r_jobs w_comments'
16
14
 
17
15
  option :name, 'workable'
18
16
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Workable
5
- VERSION = '0.1.3'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-workable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Oliveira
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-18 00:00:00.000000000 Z
11
+ date: 2022-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth