concourse 0.15.0 → 0.16.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 +5 -0
- data/README.md +6 -3
- data/lib/concourse.rb +1 -0
- 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: 23a4d3e4333d683f63b7687476d7173ab4067a75
|
|
4
|
+
data.tar.gz: bd9d38e57372ef4e6f685f5046acfc9802dae430
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45942cb6db57173c1947575c18e39fc683709a218dcdb19c222b65972af32c559faa5931a7372e0516b333bbd3d1ad58f396af2479507a1d318c6f672ab4cace
|
|
7
|
+
data.tar.gz: 73b4e576c62b11b961c2c37903f067a090036d4e929c800fd7737001a273ade6ac563393d7297a77e928018719510b28457b247579572e125de575de4a9f92df
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# concourse-gem changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.0 / 2017-09-24
|
|
4
|
+
|
|
5
|
+
Bugfix: require "tempfile", we've been relying on the class being implicitly loaded
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
## 0.15.0 / 2017-09-24
|
|
4
9
|
|
|
5
10
|
* Add awareness of Windows Rubies (implicitly linked with https://github.com/flavorjones/windows-ruby-dev-tools-release)
|
data/README.md
CHANGED
|
@@ -65,9 +65,10 @@ The ruby variable `RUBIES` is defined in the ERB binding during pipeline file ge
|
|
|
65
65
|
``` ruby
|
|
66
66
|
# these numbers/names align with public docker image names
|
|
67
67
|
RUBIES = {
|
|
68
|
-
mri:
|
|
69
|
-
jruby:
|
|
70
|
-
rbx:
|
|
68
|
+
mri: %w[2.1 2.2 2.3 2.4], # docker repository: "ruby"
|
|
69
|
+
jruby: %w[1.7 9.1], # docker repository: "jruby"
|
|
70
|
+
rbx: %w[latest], # docker repository: "rubinius/docker"
|
|
71
|
+
windows: %w[2.3 2.4] # windows-ruby-dev-tools-release
|
|
71
72
|
}
|
|
72
73
|
```
|
|
73
74
|
|
|
@@ -86,6 +87,8 @@ jobs:
|
|
|
86
87
|
<% end %>
|
|
87
88
|
```
|
|
88
89
|
|
|
90
|
+
Note that the `windows` rubies are not Docker images, since Concourse's Houdini backend doesn't use Docker. Instead, these are implicitly referring to the supported ruby versions installed by the BOSH release at https://github.com/flavorjones/windows-ruby-dev-tools-release
|
|
91
|
+
|
|
89
92
|
|
|
90
93
|
### `fly_target`
|
|
91
94
|
|
data/lib/concourse.rb
CHANGED
data/lib/concourse/version.rb
CHANGED