orchestration 0.4.12 → 0.4.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f875ac821552fa3fb97823f27d3883b9d3ac93305a5adb42eedc10322930bf3
4
- data.tar.gz: fbe1fd7262d71100122faa46f98ad27bcf94f3cb02b8894b9cf23af11bc0abae
3
+ metadata.gz: 3265e0faa40fac54e9e684952a390165dc06da0c5e3d9afbacbfb720a4e829a9
4
+ data.tar.gz: 0f458afd34c415f79aa4d93d0abbfa8213bff1b2ad4fe2efb8abd1af870e9081
5
5
  SHA512:
6
- metadata.gz: a7650ee86ba929d95a4cfdc1eb6324b053c36acdd9e3e9eab105a85dd763485643855eb3b4a458292cdb5b68f35a83447d4e057477f2f326c416e4044a06db17
7
- data.tar.gz: 640be0c857fbcadeb6eac07852b7255b2c67a0591efb9195537f942ad9be80163b386dba5b2147fe65e46769a399149bbf2088cfcc34493dbcff0344ac946db5
6
+ metadata.gz: fda5849834e82a0c28731244aacf2737188316159aca07a430eed870cefb2563633e95529b157f27f730ae20fe060d9cfcc41854a74471e5f05533961b01c42c
7
+ data.tar.gz: 7516092d74f95892d476c22c6f6157ab6ab7352f201ef30c4995a3a3fa114393bdf5989712c83a107516c42d1a16b1c7519581419980d2adc83b8b1865b3918a
data/Makefile CHANGED
@@ -7,3 +7,8 @@ test:
7
7
  .PHONY: manifest
8
8
  manifest:
9
9
  git ls-files | GREP_OPTIONS='' grep -v '^spec' > MANIFEST
10
+ git diff-index --quiet HEAD || (git add MANIFEST && git commit -m "Update manifest" || :)
11
+
12
+ .PHONY: release
13
+ release: manifest
14
+ gem build orchestration.gemspec
data/README.md CHANGED
@@ -35,7 +35,7 @@ The below screenshot demonstrates _Orchestration_ being installed in a brand new
35
35
  Add _Orchestration_ to your Gemfile:
36
36
 
37
37
  ```ruby
38
- gem 'orchestration', '~> 0.4.12'
38
+ gem 'orchestration', '~> 0.4.13'
39
39
  ```
40
40
 
41
41
  Install:
@@ -51,7 +51,9 @@ ifneq (,${sidecar_suffix})
51
51
  endif
52
52
 
53
53
  ifdef sidecar
54
- sidecar_compose = sidecar=1
54
+ # Set the variable to an empty string so that "#{sidecar-1234}" will evaluate
55
+ # to "1234" in port mappings.
56
+ sidecar_compose = sidecar=''
55
57
  ifeq (,${sidecar_suffix})
56
58
  sidecar_suffix := $(call token)
57
59
  _ignore := $(shell echo ${sidecar_suffix} > ${orchestration_dir}/.sidecar)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.4.12'
4
+ VERSION = '0.4.13'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.12
4
+ version: 0.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-01 00:00:00.000000000 Z
11
+ date: 2019-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: database_url