gitlab_support_readiness 1.0.53 → 1.0.55

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: 90bf96475be6f56272b9c27227ca4bd5ddb7f8f05b3457c93c6d739739bbb8a7
4
- data.tar.gz: 227ac38c10d8fd4c64f98e31085da8c47d5b60890be17eb3c31b20a6f0326172
3
+ metadata.gz: 3c0a03f11f82e98dcee376559c2643497ca1ecfbb0b39142fff213d85da4564e
4
+ data.tar.gz: bbdb4db42a5318a035e8d8cfa3cd46ec470e0223cfe51b954d208132e9f82fab
5
5
  SHA512:
6
- metadata.gz: fc476e3c46bbf0a53773fd0c820012f15ec70091581f5a8ffd6fcb465a6cf6b078ffdaebbead09cd7fffd81a61c711f014c61e2c29bc18b17e18c94b0a9fdff6
7
- data.tar.gz: 9f82fa6daeba794e4dac279f5ab88f0f702b6f09f3d99f8eb3c8fdc1be1e62feace6607be6a91d4fd64e108b92ecddcd586afc1d9493e3be9e378b618c82ded0
6
+ metadata.gz: 7b85659b89413bbfee95dee4b9c2c9763a28492ba3d9aa387daf2672f78acd41ed042f3951069c3f53a656bced3e9f47c6c2b53a2d5ae015f181262196952a26
7
+ data.tar.gz: 3c42136d8cda152f2155a6655c7deeb7f44755995aab9d0b84790997b10c76b773407a478cc33012b2b250cc42175ffb98cf6d4240e94715492a0ddefe6ad46d
@@ -264,7 +264,7 @@ module Readiness
264
264
  # @author Jason Colyer
265
265
  # @since 1.0.42
266
266
  def self.article_dris
267
- @article_dris ||= ENV.fetchh('CREATE_ARTICLE_DRIS')
267
+ @article_dris ||= ENV.fetch('CREATE_ARTICLE_DRIS')
268
268
  end
269
269
 
270
270
  ##
@@ -152,7 +152,7 @@ module Readiness
152
152
  # @author Jason Colyer
153
153
  # @since 1.0.42
154
154
  def self.opportunity_id
155
- @opportunity_id ||= ENV.fetchh('ENABLE_US_GOV_SUPPORT_SFDC_OPP')
155
+ @opportunity_id ||= ENV.fetch('ENABLE_US_GOV_SUPPORT_SFDC_OPP')
156
156
  end
157
157
 
158
158
  ##
@@ -98,7 +98,7 @@ module Readiness
98
98
  # @author Jason Colyer
99
99
  # @since 1.0.42
100
100
  def self.context
101
- @context ||= ENF.fetch('INTERNAL_REQUEST_GLOBAL_CONTEXT')
101
+ @context ||= ENV.fetch('INTERNAL_REQUEST_GLOBAL_CONTEXT')
102
102
  end
103
103
 
104
104
  ##
@@ -107,7 +107,7 @@ module Readiness
107
107
  # @author Jason Colyer
108
108
  # @since 1.0.42
109
109
  def self.contact_name
110
- @contact_name ||= ENF.fetch('INTERNAL_REQUEST_GLOBAL_CONTACT_NAME')
110
+ @contact_name ||= ENV.fetch('INTERNAL_REQUEST_GLOBAL_CONTACT_NAME')
111
111
  end
112
112
 
113
113
  ##
@@ -116,7 +116,7 @@ module Readiness
116
116
  # @author Jason Colyer
117
117
  # @since 1.0.42
118
118
  def self.contact_email
119
- @contact_email ||= ENF.fetch('INTERNAL_REQUEST_GLOBAL_EMAIL')
119
+ @contact_email ||= ENV.fetch('INTERNAL_REQUEST_GLOBAL_EMAIL')
120
120
  end
121
121
 
122
122
  ##
@@ -125,7 +125,7 @@ module Readiness
125
125
  # @author Jason Colyer
126
126
  # @since 1.0.42
127
127
  def self.company
128
- @company ||= ENF.fetch('INTERNAL_REQUEST_GLOBAL_COMPANY_NAME')
128
+ @company ||= ENV.fetch('INTERNAL_REQUEST_GLOBAL_COMPANY_NAME')
129
129
  end
130
130
 
131
131
  ##
@@ -134,7 +134,7 @@ module Readiness
134
134
  # @author Jason Colyer
135
135
  # @since 1.0.42
136
136
  def self.sub_name
137
- @sub_name ||= ENF.fetch('SAAS_SUB_LINK_SUB_NAME')
137
+ @sub_name ||= ENV.fetch('SAAS_SUB_LINK_SUB_NAME')
138
138
  end
139
139
 
140
140
  ##
@@ -143,7 +143,7 @@ module Readiness
143
143
  # @author Jason Colyer
144
144
  # @since 1.0.42
145
145
  def self.namespace_provided
146
- @namespace_provided ||= ENF.fetch('SAAS_SUB_LINK_NAMESPACE')
146
+ @namespace_provided ||= ENV.fetch('SAAS_SUB_LINK_NAMESPACE')
147
147
  end
148
148
 
149
149
  ##
@@ -152,7 +152,7 @@ module Readiness
152
152
  # @author Jason Colyer
153
153
  # @since 1.0.42
154
154
  def self.sfdc_account_link
155
- @sfdc_account_link ||= ENF.fetch('SAAS_SUB_LINK_SFDC_ACCOUNT')
155
+ @sfdc_account_link ||= ENV.fetch('SAAS_SUB_LINK_SFDC_ACCOUNT')
156
156
  end
157
157
 
158
158
  ##
@@ -161,7 +161,7 @@ module Readiness
161
161
  # @author Jason Colyer
162
162
  # @since 1.0.42
163
163
  def self.sfdc_upload_link
164
- @sfdc_upload_link ||= ENF.fetch('SAAS_SUB_LINK_OWNER_CONFIRMATION')
164
+ @sfdc_upload_link ||= ENV.fetch('SAAS_SUB_LINK_OWNER_CONFIRMATION')
165
165
  end
166
166
 
167
167
  ##
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab_support_readiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.53
4
+ version: 1.0.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Colyer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-26 00:00:00.000000000 Z
11
+ date: 2024-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -416,7 +416,7 @@ licenses:
416
416
  metadata:
417
417
  bug_tracker_uri: https://gitlab.com/gitlab-com/support/support-ops/support-ops-project/-/issues
418
418
  documentation_uri: https://gitlab-support-readiness.gitlab.io/gitlab_support_readiness_gem/
419
- post_install_message:
419
+ post_install_message:
420
420
  rdoc_options: []
421
421
  require_paths:
422
422
  - lib
@@ -431,8 +431,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
431
431
  - !ruby/object:Gem::Version
432
432
  version: '0'
433
433
  requirements: []
434
- rubygems_version: 3.4.22
435
- signing_key:
434
+ rubygems_version: 3.4.10
435
+ signing_key:
436
436
  specification_version: 4
437
437
  summary: GitLab Support Readiness
438
438
  test_files: []