orchestration 0.4.2 → 0.4.3

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: d589d50ab6d3d03c9822ba9b93ef34cf5ff8da72cf533fda977ff4636b02971f
4
- data.tar.gz: fa76ff6d543d6b1b9163ae65eec399485afa6cd6c64e197075f63061cb9bc048
3
+ metadata.gz: 0cb5ae60827d78174136105aa5d569442403e0c66fbd91b52dc1fa960d54b901
4
+ data.tar.gz: ebc464ac7f85474af8cd888571583f863d2a0ffe6629190e8a6d412e6abc20dd
5
5
  SHA512:
6
- metadata.gz: c628f61477317a5d0f59a74f20edf79f7f2f30558afcb39cd4a31d545b41b142873f8346fdf1fc20012d1fd77a7ac02261a3e3657372f48ed390355f73c02842
7
- data.tar.gz: 1bd874621d3b9bac7f06d771c8f1c77fbeaafb0646a073f39e08b2262d4e1db22bfa57b80ac3312c32cbb59381959e217e39c8a9789d82e61e82b2a230c6c417
6
+ metadata.gz: 20653aa7ed7ee911d562cab05df0184525655af43a156082840a2052ed687575cd46c8a34fc975721fb97eaea0899c4b7e9d0244e6af67531905f91f6fdef569
7
+ data.tar.gz: 9aa560232ac183ba7368c23109e17d382f6483c1f125fbf155f3f8a58eddf25f1cf626ac85581ca1dbe0b8e0dfb3110774b3ca549890a816c7e90e0c17423617
data/README.md CHANGED
@@ -29,7 +29,7 @@ The below screenshot demonstrates _Orchestration_ being installed in a brand new
29
29
  Add _Orchestration_ to your Gemfile:
30
30
 
31
31
  ```ruby
32
- gem 'orchestration', '~> 0.4.2'
32
+ gem 'orchestration', '~> 0.4.3'
33
33
  ```
34
34
 
35
35
  Install:
@@ -32,7 +32,8 @@ else
32
32
  endif
33
33
 
34
34
  ifneq (,$(wildcard ${env_file}))
35
- rake=. ${env_file} && ${rake}
35
+ rake_cmd:=${rake}
36
+ rake=. ${env_file} && ${rake_cmd}
36
37
  endif
37
38
 
38
39
  docker_organization=$(shell bash ${orchestration_dir}/yaml.bash docker_organization)
@@ -201,11 +202,11 @@ endif
201
202
 
202
203
  .PHONY: deploy
203
204
  ifndef manager
204
- @$(call println_error,'Missing `manager` parameter: `make deploy manager=swarm-manager.example.cor`')
205
+ @$(call println_error,'Missing `manager` parameter: `make deploy manager=swarm-manager.example.com`')
205
206
  endif
206
207
  deploy: env := production
207
208
  deploy: project_name = ${docker_repository}_${env}
208
- deploy: path = $(shell mktemp -d)
209
+ deploy: path := $(shell mktemp -d)
209
210
  deploy: RAILS_ENV = ${env}
210
211
  deploy: RACK_ENV = ${env}
211
212
  deploy: DOCKER_TAG = ${git_version}
@@ -215,7 +216,7 @@ deploy:
215
216
  $(call make,_verify_compose env_file=${env_file} env=${env}) && \
216
217
  $(call make,bundle path='${path}/bundle.tar') ${log} && \
217
218
  cd '${path}' ${log} && \
218
- tar xf './bundle.tar' ${log} && \
219
+ tar xf 'bundle.tar' ${log} && \
219
220
  cd '${docker_repository}' ${log} && \
220
221
  ( [ -z '${env_file}' ] || cp '${env_file}' './.env' ${log} ) && \
221
222
  $(call println,'${yellow}Deployment environment${reset}:') && \
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.4.2'
4
+ VERSION = '0.4.3'
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.2
4
+ version: 0.4.3
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-05-27 00:00:00.000000000 Z
11
+ date: 2019-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: database_url