firespring_dev_commands 2.3.4 → 2.5.0.pre.alpha.1

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.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/firespring_dev_commands/audit/report.rb +2 -9
  4. data/lib/firespring_dev_commands/aws/account.rb +1 -1
  5. data/lib/firespring_dev_commands/aws/cloudformation.rb +3 -10
  6. data/lib/firespring_dev_commands/aws/login.rb +11 -37
  7. data/lib/firespring_dev_commands/common.rb +2 -22
  8. data/lib/firespring_dev_commands/docker/compose.rb +1 -2
  9. data/lib/firespring_dev_commands/docker/status.rb +0 -20
  10. data/lib/firespring_dev_commands/docker.rb +16 -86
  11. data/lib/firespring_dev_commands/eol/aws.rb +2 -10
  12. data/lib/firespring_dev_commands/eol.rb +2 -22
  13. data/lib/firespring_dev_commands/git.rb +29 -44
  14. data/lib/firespring_dev_commands/jira/issue.rb +1 -3
  15. data/lib/firespring_dev_commands/node.rb +1 -1
  16. data/lib/firespring_dev_commands/php/audit.rb +0 -4
  17. data/lib/firespring_dev_commands/php.rb +12 -28
  18. data/lib/firespring_dev_commands/platform.rb +31 -38
  19. data/lib/firespring_dev_commands/ruby.rb +3 -6
  20. data/lib/firespring_dev_commands/target_process/query.rb +4 -30
  21. data/lib/firespring_dev_commands/target_process/release.rb +1 -1
  22. data/lib/firespring_dev_commands/target_process/team_assignment.rb +1 -1
  23. data/lib/firespring_dev_commands/target_process/user.rb +1 -13
  24. data/lib/firespring_dev_commands/target_process/user_story.rb +1 -1
  25. data/lib/firespring_dev_commands/target_process/user_story_history.rb +1 -1
  26. data/lib/firespring_dev_commands/target_process.rb +7 -24
  27. data/lib/firespring_dev_commands/templates/aws.rb +6 -33
  28. data/lib/firespring_dev_commands/templates/base_interface.rb +2 -2
  29. data/lib/firespring_dev_commands/templates/ci.rb +11 -16
  30. data/lib/firespring_dev_commands/templates/docker/application.rb +2 -2
  31. data/lib/firespring_dev_commands/templates/docker/node/application.rb +5 -55
  32. data/lib/firespring_dev_commands/templates/docker/php/application.rb +16 -58
  33. data/lib/firespring_dev_commands/templates/docker/ruby/application.rb +5 -54
  34. data/lib/firespring_dev_commands/templates/eol.rb +2 -9
  35. data/lib/firespring_dev_commands/templates/git.rb +4 -171
  36. data/lib/firespring_dev_commands/version.rb +1 -1
  37. data/lib/firespring_dev_commands.rb +1 -1
  38. metadata +37 -113
  39. data/lib/firespring_dev_commands/aws/route53.rb +0 -139
  40. data/lib/firespring_dev_commands/bloom_growth/rock.rb +0 -34
  41. data/lib/firespring_dev_commands/bloom_growth/seat.rb +0 -16
  42. data/lib/firespring_dev_commands/bloom_growth/user.rb +0 -43
  43. data/lib/firespring_dev_commands/bloom_growth.rb +0 -132
  44. data/lib/firespring_dev_commands/certificate.rb +0 -59
  45. data/lib/firespring_dev_commands/coverage/base.rb +0 -16
  46. data/lib/firespring_dev_commands/coverage/cobertura.rb +0 -86
  47. data/lib/firespring_dev_commands/coverage/none.rb +0 -21
  48. data/lib/firespring_dev_commands/dns/resource.rb +0 -83
  49. data/lib/firespring_dev_commands/docker/desktop.rb +0 -61
  50. data/lib/firespring_dev_commands/eol/node.rb +0 -42
  51. data/lib/firespring_dev_commands/eol/php.rb +0 -50
  52. data/lib/firespring_dev_commands/eol/ruby.rb +0 -42
  53. data/lib/firespring_dev_commands/jira/parent.rb +0 -19
  54. data/lib/firespring_dev_commands/os.rb +0 -35
  55. data/lib/firespring_dev_commands/port.rb +0 -24
  56. data/lib/firespring_dev_commands/target_process/time.rb +0 -32
  57. data/lib/firespring_dev_commands/templates/aws/services/route53.rb +0 -111
  58. data/lib/firespring_dev_commands/templates/certificate.rb +0 -41
@@ -4,23 +4,6 @@ module Dev
4
4
  module Template
5
5
  # Class contains rake templates for managing your git project
6
6
  class Git < Dev::Template::BaseInterface
7
- # Create the rake task for cloning all defined repos
8
- def create_clone_task!
9
- # Have to set a local variable to be accessible inside of the instance_eval block
10
- exclude = @exclude
11
-
12
- DEV_COMMANDS_TOP_LEVEL.instance_eval do
13
- namespace :git do
14
- return if exclude.include?(:clone)
15
-
16
- desc 'Make sure all repos are cloned'
17
- task :clone do
18
- Dev::Git.new.clone_repos
19
- end
20
- end
21
- end
22
- end
23
-
24
7
  # Create the rake task for the git checkout method
25
8
  def create_checkout_task!
26
9
  # Have to set a local variable to be accessible inside of the instance_eval block
@@ -31,15 +14,13 @@ module Dev
31
14
  return if exclude.include?(:checkout)
32
15
 
33
16
  desc 'Checks out a branch for each repo (alias: git:co)' \
34
- "\n\tuse BRANCH=abc123 to specify the branch of code you wish to switch to (required)" \
35
- "\n\tuse DEFAULT=abc456 to specify the branch of code to fall back to" \
36
- "\n\tIf branch and default do not exist, the configured staging or main branch will be checked out"
17
+ "\n\tuse BRANCH=abc123 to specify the branch of code you with to switch to (required)" \
18
+ "\n\tIf the branch does not exist, the configured staging or main branch will be checked out"
37
19
  task checkout: %w(init) do
38
20
  branch = ENV['BRANCH'].to_s.strip
39
- default = ENV['DEFAULT'].to_s.strip
40
21
  raise 'branch is required' if branch.empty?
41
22
 
42
- Dev::Git.new.checkout_all(branch, default)
23
+ Dev::Git.new.checkout_all(branch)
43
24
  end
44
25
 
45
26
  task co: %w(init checkout) do
@@ -50,7 +31,7 @@ module Dev
50
31
  [d.main_branch, d.staging_branch].uniq.each do |it|
51
32
  desc "Checks out the #{it} branch for each repo (alias: git:co:#{it})"
52
33
  task "checkout:#{it}": %w(init) do
53
- Dev::Git.new.checkout_all(it, '')
34
+ Dev::Git.new.checkout_all(it)
54
35
  end
55
36
 
56
37
  task "co:#{it}": %W(init checkout:#{it}) do
@@ -161,154 +142,6 @@ module Dev
161
142
  end
162
143
  end
163
144
  end
164
-
165
- # Create the rake task for the git commit status pending task.
166
- def create_commit_status_pending_task!
167
- # Have to set a local variable to be accessible inside of the instance_eval block
168
- exclude = @exclude
169
-
170
- DEV_COMMANDS_TOP_LEVEL.instance_eval do
171
- namespace :git do
172
- return if exclude.include?(:commit_status)
173
-
174
- namespace :commit_status do
175
- desc 'Add pending status to commit' \
176
- "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
177
- "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
178
- "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
179
- "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
180
- "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
181
- task :pending do
182
- status = 'pending'
183
- token = ENV['GITHUB_TOKEN'].to_s.strip
184
- repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
185
- commit_id = ENV['COMMIT_ID'].to_s.strip
186
-
187
- raise 'GITHUB_TOKEN is required' unless token
188
- raise 'REPOSITORY is required' unless repo_name
189
- raise 'COMMIT_ID is required' unless commit_id
190
-
191
- options = {}
192
- options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
193
- options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
194
-
195
- Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
196
- end
197
- end
198
- end
199
- end
200
- end
201
-
202
- # Create the rake task for the git commit status success task.
203
- def create_commit_status_success_task!
204
- # Have to set a local variable to be accessible inside of the instance_eval block
205
- exclude = @exclude
206
-
207
- DEV_COMMANDS_TOP_LEVEL.instance_eval do
208
- namespace :git do
209
- return if exclude.include?(:commit_status)
210
-
211
- namespace :commit_status do
212
- desc 'Add success status to commit' \
213
- "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
214
- "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
215
- "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
216
- "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
217
- "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
218
- task :success do
219
- status = 'success'
220
- token = ENV['GITHUB_TOKEN'].to_s.strip
221
- repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
222
- commit_id = ENV['COMMIT_ID'].to_s.strip
223
-
224
- raise 'GITHUB_TOKEN is required' unless token
225
- raise 'REPOSITORY is required' unless repo_name
226
- raise 'COMMIT_ID is required' unless commit_id
227
-
228
- options = {}
229
- options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
230
- options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
231
-
232
- Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
233
- end
234
- end
235
- end
236
- end
237
- end
238
-
239
- # Create the rake task for the git commit status error task.
240
- def create_commit_status_error_task!
241
- # Have to set a local variable to be accessible inside of the instance_eval block
242
- exclude = @exclude
243
-
244
- DEV_COMMANDS_TOP_LEVEL.instance_eval do
245
- namespace :git do
246
- return if exclude.include?(:commit_status)
247
-
248
- namespace :commit_status do
249
- desc 'Add error status to commit' \
250
- "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
251
- "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
252
- "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
253
- "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
254
- "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
255
- task :error do
256
- status = 'error'
257
- token = ENV['GITHUB_TOKEN'].to_s.strip
258
- repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
259
- commit_id = ENV['COMMIT_ID'].to_s.strip
260
-
261
- raise 'GITHUB_TOKEN is required' unless token
262
- raise 'REPOSITORY is required' unless repo_name
263
- raise 'COMMIT_ID is required' unless commit_id
264
-
265
- options = {}
266
- options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
267
- options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
268
-
269
- Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
270
- end
271
- end
272
- end
273
- end
274
- end
275
-
276
- # Create the rake task for the git commit status failure task.
277
- def create_commit_status_failure_task!
278
- # Have to set a local variable to be accessible inside of the instance_eval block
279
- exclude = @exclude
280
-
281
- DEV_COMMANDS_TOP_LEVEL.instance_eval do
282
- namespace :git do
283
- return if exclude.include?(:commit_status)
284
-
285
- namespace :commit_status do
286
- desc 'Add failure status to commit' \
287
- "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
288
- "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
289
- "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
290
- "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
291
- "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
292
- task :failure do
293
- status = 'failure'
294
- token = ENV['GITHUB_TOKEN'].to_s.strip
295
- repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
296
- commit_id = ENV['COMMIT_ID'].to_s.strip
297
-
298
- raise 'GITHUB_TOKEN is required' unless token
299
- raise 'REPOSITORY is required' unless repo_name
300
- raise 'COMMIT_ID is required' unless commit_id
301
-
302
- options = {}
303
- options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
304
- options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
305
-
306
- Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
307
- end
308
- end
309
- end
310
- end
311
- end
312
145
  end
313
146
  end
314
147
  end
@@ -6,6 +6,6 @@ module Dev
6
6
  # Use 'v.v.v.pre.alpha.v' for pre-release vesions
7
7
  # Use 'v.v.v.beta.v for beta versions
8
8
  # Use semantic versioning for any releases (https://semver.org/)
9
- VERSION = '2.3.4'.freeze
9
+ VERSION = '2.5.0.pre.alpha.1'.freeze
10
10
  end
11
11
  end
@@ -11,7 +11,7 @@ DEV_COMMANDS_TOP_LEVEL = self
11
11
 
12
12
  # Load all gems referenced in the Gemfile
13
13
  require 'bundler'
14
- Bundler.require(:default)
14
+ Bundler.require
15
15
 
16
16
  # Add libdir to the default ruby path
17
17
  libdir = File.realpath(File.dirname(__FILE__))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firespring_dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.5.0.pre.alpha.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-21 00:00:00.000000000 Z
11
+ date: 2023-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,168 +16,154 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 7.1.2
19
+ version: 7.1.1
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: 7.1.2
26
+ version: 7.1.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sdk-cloudformation
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.97.0
33
+ version: 1.83.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.97.0
40
+ version: 1.83.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: aws-sdk-codepipeline
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.67.0
47
+ version: 1.59.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.67.0
54
+ version: 1.59.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: aws-sdk-ecr
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.68.0
61
+ version: 1.61.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.68.0
68
+ version: 1.61.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: aws-sdk-elasticache
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.95.0
75
+ version: 1.88.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.95.0
82
+ version: 1.88.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: aws-sdk-lambda
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 1.113.0
89
+ version: 1.101.0
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 1.113.0
96
+ version: 1.101.0
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: aws-sdk-opensearchservice
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 1.33.0
103
+ version: 1.24.0
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 1.33.0
110
+ version: 1.24.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: aws-sdk-rds
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 1.208.0
117
+ version: 1.183.0
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 1.208.0
125
- - !ruby/object:Gem::Dependency
126
- name: aws-sdk-route53
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: 1.87.0
132
- type: :runtime
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: 1.87.0
124
+ version: 1.183.0
139
125
  - !ruby/object:Gem::Dependency
140
126
  name: aws-sdk-s3
141
127
  requirement: !ruby/object:Gem::Requirement
142
128
  requirements:
143
129
  - - "~>"
144
130
  - !ruby/object:Gem::Version
145
- version: 1.141.0
131
+ version: 1.127.0
146
132
  type: :runtime
147
133
  prerelease: false
148
134
  version_requirements: !ruby/object:Gem::Requirement
149
135
  requirements:
150
136
  - - "~>"
151
137
  - !ruby/object:Gem::Version
152
- version: 1.141.0
138
+ version: 1.127.0
153
139
  - !ruby/object:Gem::Dependency
154
140
  name: aws-sdk-ssm
155
141
  requirement: !ruby/object:Gem::Requirement
156
142
  requirements:
157
143
  - - "~>"
158
144
  - !ruby/object:Gem::Version
159
- version: 1.162.0
145
+ version: 1.154.0
160
146
  type: :runtime
161
147
  prerelease: false
162
148
  version_requirements: !ruby/object:Gem::Requirement
163
149
  requirements:
164
150
  - - "~>"
165
151
  - !ruby/object:Gem::Version
166
- version: 1.162.0
152
+ version: 1.154.0
167
153
  - !ruby/object:Gem::Dependency
168
154
  name: aws-sdk-sts
169
155
  requirement: !ruby/object:Gem::Requirement
170
156
  requirements:
171
157
  - - "~>"
172
158
  - !ruby/object:Gem::Version
173
- version: 1.11.0
159
+ version: 1.10.0
174
160
  type: :runtime
175
161
  prerelease: false
176
162
  version_requirements: !ruby/object:Gem::Requirement
177
163
  requirements:
178
164
  - - "~>"
179
165
  - !ruby/object:Gem::Version
180
- version: 1.11.0
166
+ version: 1.10.0
181
167
  - !ruby/object:Gem::Dependency
182
168
  name: colorize
183
169
  requirement: !ruby/object:Gem::Requirement
@@ -220,34 +206,6 @@ dependencies:
220
206
  - - "~>"
221
207
  - !ruby/object:Gem::Version
222
208
  version: 2.8.1
223
- - !ruby/object:Gem::Dependency
224
- name: excon
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - '='
228
- - !ruby/object:Gem::Version
229
- version: 0.110.0
230
- type: :runtime
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - '='
235
- - !ruby/object:Gem::Version
236
- version: 0.110.0
237
- - !ruby/object:Gem::Dependency
238
- name: faraday-retry
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - "~>"
242
- - !ruby/object:Gem::Version
243
- version: '2.0'
244
- type: :runtime
245
- prerelease: false
246
- version_requirements: !ruby/object:Gem::Requirement
247
- requirements:
248
- - - "~>"
249
- - !ruby/object:Gem::Version
250
- version: '2.0'
251
209
  - !ruby/object:Gem::Dependency
252
210
  name: git
253
211
  requirement: !ruby/object:Gem::Requirement
@@ -291,75 +249,61 @@ dependencies:
291
249
  - !ruby/object:Gem::Version
292
250
  version: 2.3.0
293
251
  - !ruby/object:Gem::Dependency
294
- name: octokit
252
+ name: libxml-ruby
295
253
  requirement: !ruby/object:Gem::Requirement
296
254
  requirements:
297
- - - "~>"
298
- - !ruby/object:Gem::Version
299
- version: '8.1'
300
- type: :runtime
301
- prerelease: false
302
- version_requirements: !ruby/object:Gem::Requirement
303
- requirements:
304
- - - "~>"
305
- - !ruby/object:Gem::Version
306
- version: '8.1'
307
- - !ruby/object:Gem::Dependency
308
- name: ox
309
- requirement: !ruby/object:Gem::Requirement
310
- requirements:
311
- - - "~>"
255
+ - - '='
312
256
  - !ruby/object:Gem::Version
313
- version: 2.14.17
257
+ version: 4.1.1
314
258
  type: :runtime
315
259
  prerelease: false
316
260
  version_requirements: !ruby/object:Gem::Requirement
317
261
  requirements:
318
- - - "~>"
262
+ - - '='
319
263
  - !ruby/object:Gem::Version
320
- version: 2.14.17
264
+ version: 4.1.1
321
265
  - !ruby/object:Gem::Dependency
322
266
  name: public_suffix
323
267
  requirement: !ruby/object:Gem::Requirement
324
268
  requirements:
325
269
  - - '='
326
270
  - !ruby/object:Gem::Version
327
- version: 5.0.4
271
+ version: 5.0.1
328
272
  type: :runtime
329
273
  prerelease: false
330
274
  version_requirements: !ruby/object:Gem::Requirement
331
275
  requirements:
332
276
  - - '='
333
277
  - !ruby/object:Gem::Version
334
- version: 5.0.4
278
+ version: 5.0.1
335
279
  - !ruby/object:Gem::Dependency
336
280
  name: rake
337
281
  requirement: !ruby/object:Gem::Requirement
338
282
  requirements:
339
283
  - - "~>"
340
284
  - !ruby/object:Gem::Version
341
- version: 13.1.0
285
+ version: 13.0.6
342
286
  type: :runtime
343
287
  prerelease: false
344
288
  version_requirements: !ruby/object:Gem::Requirement
345
289
  requirements:
346
290
  - - "~>"
347
291
  - !ruby/object:Gem::Version
348
- version: 13.1.0
292
+ version: 13.0.6
349
293
  - !ruby/object:Gem::Dependency
350
294
  name: slack-ruby-client
351
295
  requirement: !ruby/object:Gem::Requirement
352
296
  requirements:
353
297
  - - "~>"
354
298
  - !ruby/object:Gem::Version
355
- version: 2.2.0
299
+ version: 2.1.0
356
300
  type: :runtime
357
301
  prerelease: false
358
302
  version_requirements: !ruby/object:Gem::Requirement
359
303
  requirements:
360
304
  - - "~>"
361
305
  - !ruby/object:Gem::Version
362
- version: 2.2.0
306
+ version: 2.1.0
363
307
  description: Ruby library for creating/maintaining your development environment
364
308
  email: opensource@firespring.com
365
309
  executables: []
@@ -382,50 +326,33 @@ files:
382
326
  - lib/firespring_dev_commands/aws/login.rb
383
327
  - lib/firespring_dev_commands/aws/parameter.rb
384
328
  - lib/firespring_dev_commands/aws/profile.rb
385
- - lib/firespring_dev_commands/aws/route53.rb
386
329
  - lib/firespring_dev_commands/aws/s3.rb
387
- - lib/firespring_dev_commands/bloom_growth.rb
388
- - lib/firespring_dev_commands/bloom_growth/rock.rb
389
- - lib/firespring_dev_commands/bloom_growth/seat.rb
390
- - lib/firespring_dev_commands/bloom_growth/user.rb
391
330
  - lib/firespring_dev_commands/boolean.rb
392
- - lib/firespring_dev_commands/certificate.rb
393
331
  - lib/firespring_dev_commands/common.rb
394
- - lib/firespring_dev_commands/coverage/base.rb
395
- - lib/firespring_dev_commands/coverage/cobertura.rb
396
- - lib/firespring_dev_commands/coverage/none.rb
397
332
  - lib/firespring_dev_commands/daterange.rb
398
- - lib/firespring_dev_commands/dns/resource.rb
399
333
  - lib/firespring_dev_commands/docker.rb
400
334
  - lib/firespring_dev_commands/docker/compose.rb
401
- - lib/firespring_dev_commands/docker/desktop.rb
402
335
  - lib/firespring_dev_commands/docker/status.rb
403
336
  - lib/firespring_dev_commands/dotenv.rb
404
337
  - lib/firespring_dev_commands/env.rb
405
338
  - lib/firespring_dev_commands/eol.rb
406
339
  - lib/firespring_dev_commands/eol/aws.rb
407
- - lib/firespring_dev_commands/eol/node.rb
408
- - lib/firespring_dev_commands/eol/php.rb
409
340
  - lib/firespring_dev_commands/eol/product_version.rb
410
- - lib/firespring_dev_commands/eol/ruby.rb
411
341
  - lib/firespring_dev_commands/git.rb
412
342
  - lib/firespring_dev_commands/git/info.rb
413
343
  - lib/firespring_dev_commands/jira.rb
414
344
  - lib/firespring_dev_commands/jira/histories.rb
415
345
  - lib/firespring_dev_commands/jira/history.rb
416
346
  - lib/firespring_dev_commands/jira/issue.rb
417
- - lib/firespring_dev_commands/jira/parent.rb
418
347
  - lib/firespring_dev_commands/jira/project.rb
419
348
  - lib/firespring_dev_commands/jira/user.rb
420
349
  - lib/firespring_dev_commands/jira/user/type.rb
421
350
  - lib/firespring_dev_commands/logger.rb
422
351
  - lib/firespring_dev_commands/node.rb
423
352
  - lib/firespring_dev_commands/node/audit.rb
424
- - lib/firespring_dev_commands/os.rb
425
353
  - lib/firespring_dev_commands/php.rb
426
354
  - lib/firespring_dev_commands/php/audit.rb
427
355
  - lib/firespring_dev_commands/platform.rb
428
- - lib/firespring_dev_commands/port.rb
429
356
  - lib/firespring_dev_commands/rake.rb
430
357
  - lib/firespring_dev_commands/ruby.rb
431
358
  - lib/firespring_dev_commands/ruby/audit.rb
@@ -441,14 +368,11 @@ files:
441
368
  - lib/firespring_dev_commands/target_process/release.rb
442
369
  - lib/firespring_dev_commands/target_process/team.rb
443
370
  - lib/firespring_dev_commands/target_process/team_assignment.rb
444
- - lib/firespring_dev_commands/target_process/time.rb
445
371
  - lib/firespring_dev_commands/target_process/user.rb
446
372
  - lib/firespring_dev_commands/target_process/user_story.rb
447
373
  - lib/firespring_dev_commands/target_process/user_story_history.rb
448
374
  - lib/firespring_dev_commands/templates/aws.rb
449
- - lib/firespring_dev_commands/templates/aws/services/route53.rb
450
375
  - lib/firespring_dev_commands/templates/base_interface.rb
451
- - lib/firespring_dev_commands/templates/certificate.rb
452
376
  - lib/firespring_dev_commands/templates/ci.rb
453
377
  - lib/firespring_dev_commands/templates/config.rb
454
378
  - lib/firespring_dev_commands/templates/docker/application.rb
@@ -475,9 +399,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
475
399
  version: '3.1'
476
400
  required_rubygems_version: !ruby/object:Gem::Requirement
477
401
  requirements:
478
- - - ">="
402
+ - - ">"
479
403
  - !ruby/object:Gem::Version
480
- version: '0'
404
+ version: 1.3.1
481
405
  requirements: []
482
406
  rubygems_version: 3.4.10
483
407
  signing_key: