ops_team 0.2.5 → 0.2.6

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
  SHA256:
3
- metadata.gz: 825a1361283396d68558e9584c6a3b550bbd44965c38829890c0ba2610eb7c55
4
- data.tar.gz: b553774400887ee8e22882aa9cccff57e4f5168cb0eccecbe7ad5673ff09c6a6
3
+ metadata.gz: 164882aa877bcf1e7026038b7a5af80466f6d93bdde7004746b023d27c209201
4
+ data.tar.gz: e829f092558ea07bc81758a00a4551cd707d6c2c15fa4bada88bf30638abdb9d
5
5
  SHA512:
6
- metadata.gz: 0665d5cfbb51391ec40775e219c60c2fc01548bc803c19f048dba5352d3f1c327f2bc150658dbcedbfa35f6e28d8dd3b9108935b460905f2a5cdcc3b1a6570f7
7
- data.tar.gz: 0aa5809debd1fa918e9f5b223d37fd2bfe38d7d7abb50e81cbc176e5490bcb5d8a1323c1a536837d90902e753edad2b9770063cf41f92a1e41edba72e7de7ffe
6
+ metadata.gz: 0e643d7c06f4eb3afd4837502a23d383a66c1dec472aff0e4bf0471c45240094db510a26d9d2c24c8688723108c92514dba2af6f25c0dddc25f4c34ec6d9bc3b
7
+ data.tar.gz: 6ffbd12aa5626f08ecde1d88d011a7318644624c27bbccd06ef15eca3016cedf26f228306eedc314234f92548b83fb5470acf3e06c6f5470514ac693bc9314b3
@@ -11,7 +11,7 @@ actions:
11
11
  alias: a
12
12
  description: runs 'terraform apply'
13
13
  apply-auto-approve:
14
- command: terraform apply --auto-approve
14
+ command: ops apply --auto-approve
15
15
  alias: aa
16
16
  description: runs 'terraform apply' with auto-approve
17
17
  destroy:
@@ -19,7 +19,7 @@ actions:
19
19
  alias: d
20
20
  description: runs 'terraform destroy'
21
21
  destroy-auto-approve:
22
- command: terraform destroy --auto-approve
22
+ command: ops destroy --auto-approve
23
23
  alias: dd
24
24
  description: runs 'terraform destroy' with auto-approve
25
25
  plan:
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'ops_team'
5
- s.version = '0.2.5'
5
+ s.version = '0.2.6'
6
6
  s.authors = [
7
7
  'nickthecook@gmail.com'
8
8
  ]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ops_team
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - nickthecook@gmail.com
@@ -84,7 +84,6 @@ files:
84
84
  - lib/dependencies/dir.rb
85
85
  - lib/dependencies/docker.rb
86
86
  - lib/dependencies/gem.rb
87
- - lib/dependencies/terraform.rb
88
87
  - lib/dependency.rb
89
88
  - lib/environment.rb
90
89
  - lib/ops.rb
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dependency'
4
-
5
- module Dependencies
6
- class Terraform < Dependency
7
- def met?
8
- false
9
- end
10
-
11
- def always_act?
12
- true
13
- end
14
-
15
- def meet
16
- execute("cd #{name} && terraform init && terraform apply -input=false --auto-approve")
17
- end
18
-
19
- def unmeet
20
- execute("cd #{name} && terraform destroy -input=false --auto-approve")
21
- end
22
- end
23
- end