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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 80f26ead49d400192835c4a923595a40596591e6
4
- data.tar.gz: 469143ce8e58663422418e849b08d80a5c70ef05
3
+ metadata.gz: 23a4d3e4333d683f63b7687476d7173ab4067a75
4
+ data.tar.gz: bd9d38e57372ef4e6f685f5046acfc9802dae430
5
5
  SHA512:
6
- metadata.gz: 88a2ad54563c7ef782003708e79fe6ceff4d450f5cb826b605a303493dc20c72fee51ef3ad270cd2bebb88bc0523712249e4e87e90a5bf7b01f0b2fbeb9c592c
7
- data.tar.gz: 36d446d159cc5c8ca433ea719bbf1c4e1c8853f40afa6a161ac47a677ee44bfc7cabf1a710f667ad2664e925f85ec1783cd664b69254fce37fee69cbf42deed1
6
+ metadata.gz: 45942cb6db57173c1947575c18e39fc683709a218dcdb19c222b65972af32c559faa5931a7372e0516b333bbd3d1ad58f396af2479507a1d318c6f672ab4cace
7
+ data.tar.gz: 73b4e576c62b11b961c2c37903f067a090036d4e929c800fd7737001a273ade6ac563393d7297a77e928018719510b28457b247579572e125de575de4a9f92df
@@ -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: %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"
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
 
@@ -1,5 +1,6 @@
1
1
  require "concourse/version"
2
2
  require "yaml"
3
+ require "tempfile"
3
4
 
4
5
  class Concourse
5
6
  include Rake::DSL
@@ -2,5 +2,5 @@ require "rake"
2
2
  require "erb"
3
3
 
4
4
  class Concourse
5
- VERSION = "0.15.0"
5
+ VERSION = "0.16.0"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concourse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio