clever 3.2.2 → 3.2.3

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
  SHA1:
3
- metadata.gz: 63979f4986db64df6612124fd9ab0974cb198bab
4
- data.tar.gz: 9304f5516f09faeaaaa7c107f6c531f42164ee4b
3
+ metadata.gz: 6694d0cb1936ab84956d227272a9539ecc6a5791
4
+ data.tar.gz: a23ad0110f1459719445ac685af838c42b438ebc
5
5
  SHA512:
6
- metadata.gz: 866dd8a3c35e4a950cce8f2d5de0e854ae1890b60ae8a05d4f2b6189c37aaa0eaf8b5d5b5e217f9ae2c47b9358cd429ae1460c6b1ceef34ecd421d97c646fb77
7
- data.tar.gz: 66156debf6f11613064e09645aca230d61611f98f140abf15b6b0aa324b7756b94a6d0f329a96e4d4c25b671018eac25e0910ac28bbef1ac4010a013d0216e4b
6
+ metadata.gz: ab3e3447b9c05aaf6758e14ae0ce6e533a559fdac407c29cc548fc5acfca6ad05c719810a857b265514e5a4052a4a96abc7d0ac2b6f51b9159c615a1c50a816a
7
+ data.tar.gz: 74e9b01f178087d04f568bc79b667441439ae809e19697c7f78ba9518cc606f66b003f7f4574785cb458f24deac94b0765f81193229e6087143b3d2c559c2b7f
data/.circleci/config.yml CHANGED
@@ -22,7 +22,7 @@ install_dependencies: &install_dependencies
22
22
  command: |
23
23
  echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
24
24
  source $BASH_ENV
25
- gem install bundler
25
+ gem install bundler -v '2.1.4'
26
26
  bundle install --jobs=4 --retry=3 --path vendor/bundle
27
27
 
28
28
  save_ruby_cache: &save_ruby_cache
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clever (3.2.2)
4
+ clever (3.2.3)
5
5
  faraday
6
6
  faraday_middleware
7
7
 
@@ -10,7 +10,7 @@ module Clever
10
10
  @last_name = attributes['name']['last']
11
11
  @legacy_id = attributes.dig('roles', 'district_admin', 'legacy_id')
12
12
  @provider = 'clever'
13
- @sis_id = attributes.dig('roles', 'district_admin', 'credentials', 'sis_id')
13
+ @sis_id = attributes.dig('roles', 'district_admin', 'sis_id')
14
14
  @uid = attributes['id']
15
15
  @username = username(client)
16
16
  @role = 'admin'
@@ -10,7 +10,7 @@ module Clever
10
10
  @last_name = attributes['name']['last']
11
11
  @legacy_id = attributes.dig('roles', 'staff', 'legacy_id')
12
12
  @provider = 'clever'
13
- @sis_id = attributes.dig('roles', 'staff', 'credentials', 'sis_id')
13
+ @sis_id = attributes.dig('roles', 'staff', 'sis_id')
14
14
  @uid = attributes['id']
15
15
  @username = username(client)
16
16
  @role = 'admin'
@@ -16,7 +16,7 @@ module Clever
16
16
  @last_name = attributes['name']['last']
17
17
  @legacy_id = attributes.dig('roles', 'student', 'legacy_id')
18
18
  @provider = 'clever'
19
- @sis_id = attributes['sis_id']
19
+ @sis_id = attributes.dig('roles', 'student', 'sis_id')
20
20
  @uid = attributes['id']
21
21
  @username = username(client)
22
22
  end
@@ -18,7 +18,7 @@ module Clever
18
18
  @last_name = attributes['name']['last']
19
19
  @legacy_id = attributes.dig('roles', 'teacher', 'legacy_id')
20
20
  @provider = 'clever'
21
- @sis_id = attributes.dig('roles', 'teacher', 'credentials', 'sis_id')
21
+ @sis_id = attributes.dig('roles', 'teacher', 'sis_id')
22
22
  @uid = attributes['id']
23
23
  @username = username(client)
24
24
  @role = 'teacher'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Clever
4
- VERSION = '3.2.2'
4
+ VERSION = '3.2.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clever
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.2
4
+ version: 3.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Julius
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-27 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday