concourse 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/concourse.rb +3 -1
- data/lib/concourse/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8581546c7af4991d5b4f3c2c02bf051e044ef634
|
4
|
+
data.tar.gz: 731ee5b9feb1097922e85d3617841584c15c0b81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ee6f10e28fa623c06cd68f71e8ce90d61684174a3981d04ba32b6ed76ff1636bdb26e4e2a6738857902c3cdfa8e819c7cf28caa487800f92ec9dfe23cb1ebff
|
7
|
+
data.tar.gz: 0ec6b0c3ffcdb7592ad27e81e45d02384f0fc2d46f8f55c24d53c85d4e8e396a1de01ea1992738e259eb9f68568c4cf4544b1404d30cc3b7c2a66d9a24dbf89a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# concourse-gem changelog
|
2
2
|
|
3
|
+
## 0.9.0 / 2017-02-08
|
4
|
+
|
5
|
+
Bugfix: run `fly execute` with a clean Bundler environment, to avoid accidentally injecting our environment variables into the running task.
|
6
|
+
|
7
|
+
|
3
8
|
## 0.8.0 / 2017-02-08
|
4
9
|
|
5
10
|
Expose `#erbify` and `#markdown_badge` methods.
|
data/lib/concourse.rb
CHANGED
@@ -120,7 +120,9 @@ class Concourse
|
|
120
120
|
Tempfile.create do |f|
|
121
121
|
f.write concourse_task["config"].to_yaml
|
122
122
|
f.close
|
123
|
-
|
123
|
+
Bundler.with_clean_env do
|
124
|
+
sh "fly -t #{fly_target} execute #{fly_execute_args} -c #{f.path} -x"
|
125
|
+
end
|
124
126
|
end
|
125
127
|
end
|
126
128
|
|
data/lib/concourse/version.rb
CHANGED