terraorg 0.5.4 → 0.5.5
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/lib/terraorg/model/org.rb +1 -1
- data/lib/terraorg/model/person.rb +1 -1
- data/lib/terraorg/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85afdb9d2bd75955f39a3c850bf82d0636c89c533075bfa498d0785cd8deef11
|
4
|
+
data.tar.gz: 1fbb1ab18e65c22d8a2a3568e79663f676176d5501fdeff933e49ee075a83b3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50e0de0f48977aeabb585cc2474a27d1c8d1bc4b1f004d37652f6bfb7e2c68c12212cd4301532ae72161ae58978fe0ad491fa4ae59ae595178796af22d0e4dd1
|
7
|
+
data.tar.gz: 12ce82da3bd22afe21e8452e8fd9ed54a53a700734042516ab7b0601eb9db730b9dfccd595a8e5a9916ef4a254be2cc7c4b24ed7d0383e5d93f0e58ca85c3fa0
|
data/lib/terraorg/model/org.rb
CHANGED
@@ -55,7 +55,7 @@ class Org
|
|
55
55
|
|
56
56
|
# Do not allow the JSON files to contain any people who have left.
|
57
57
|
unless @people.inactive.empty?
|
58
|
-
$stderr.puts "ERROR: Users have left the company
|
58
|
+
$stderr.puts "ERROR: Users have left the company: #{@people.inactive.map(&:id).join(', ')}"
|
59
59
|
failure = true
|
60
60
|
end
|
61
61
|
|
@@ -18,7 +18,7 @@ require 'faraday'
|
|
18
18
|
# A DEACTIVATED account status needs to be removed from the repository before merging PRs
|
19
19
|
|
20
20
|
class Person
|
21
|
-
ACTIVE_USER_STATUSES = ['ACTIVE', 'PROVISIONED', 'PASSWORD_EXPIRED', 'SUSPENDED'].freeze
|
21
|
+
ACTIVE_USER_STATUSES = ['ACTIVE', 'PROVISIONED', 'PASSWORD_EXPIRED', 'SUSPENDED', 'LOCKED_OUT', 'RECOVERY'].freeze
|
22
22
|
|
23
23
|
attr_accessor :id, :name, :okta_id, :email, :status
|
24
24
|
|
data/lib/terraorg/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terraorg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Kwan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: countries
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: '0'
|
120
120
|
requirements: []
|
121
|
-
rubygems_version: 3.0.
|
121
|
+
rubygems_version: 3.0.3.1
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: terraorg
|