terraspace_ci_gitlab 0.1.1 → 0.2.0
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/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/template/.gitlab-ci.yml +2 -0
- data/lib/terraspace_ci_gitlab/interface.rb +3 -0
- data/lib/terraspace_ci_gitlab/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d08cd7efc2c1d162f11b1168504432ab6b4b4f8df1325f68d17e93adc7a408d
|
|
4
|
+
data.tar.gz: '0912082491bac6a0cf73b8f0f4d9267c9ca5ada976eb0d13f7df69b1dd0f9922'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6db8301c37878db55fea302684dd23cfa5ad042b17ea543b1cf5547e205665d14bda7f87cf64cdf3b9df6b1c41ec905e7726b2331a70f3fac649e2a83b13ce5e
|
|
7
|
+
data.tar.gz: 77f496014a060e68dfada06d16d673d085b5da9db255ee1b2dff2a318912ead358905e2167bfdd369ccfd41ee0d079f1b162e99a7f96cfa86760c5fd767afc32
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.2.0] - 2022-07-11
|
|
7
|
+
- [#2](https://github.com/boltops-tools/terraspace_ci_gitlab/pull/2) install infracost
|
|
8
|
+
- [#3](https://github.com/boltops-tools/terraspace_ci_gitlab/pull/3) deprecation warning about comment interface method
|
|
9
|
+
|
|
6
10
|
## [0.1.1] - 2022-06-14
|
|
7
11
|
- [#1](https://github.com/boltops-tools/terraspace_ci_gitlab/pull/1) handle Gitlab::Error::Forbidden error
|
|
8
12
|
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# terraspace_ci_gitlab
|
|
2
2
|
|
|
3
|
-
[](http://badge.fury.io/rb/terraspace_ci_gitlab)
|
|
4
4
|
|
|
5
5
|
[](https://www.boltops.com)
|
|
6
6
|
|
data/lib/template/.gitlab-ci.yml
CHANGED
|
@@ -19,6 +19,8 @@ before_script: |
|
|
|
19
19
|
bundle exec terraspace new shim
|
|
20
20
|
echo 'export PATH="/usr/local/bin:$PATH' >> ~/.bash_profile
|
|
21
21
|
export PATH="/usr/local/bin:$PATH"
|
|
22
|
+
# install infracost
|
|
23
|
+
curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh
|
|
22
24
|
|
|
23
25
|
# Runs on Merge Request Only
|
|
24
26
|
plan_dev:
|
|
@@ -6,6 +6,9 @@ module TerraspaceCiGitlab
|
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
def comment(url)
|
|
9
|
+
puts "DEPRECATED: The comment interface has been replaced by the terraspace_vcs_gitlab gem."
|
|
10
|
+
puts "Please upgrade your terraspace install and add terraspace_vcs_gitlab to your Terraspace project Gemfile."
|
|
11
|
+
puts "The comment interface method will be removed from terraspace."
|
|
9
12
|
Pr.new.comment(url)
|
|
10
13
|
end
|
|
11
14
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: terraspace_ci_gitlab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gitlab
|