shipitron 0.2.1 → 0.2.2

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: 1e83f5c7899e1c6504e2a25641a696c88bd4091c
4
- data.tar.gz: 8e971e38cad347535d1efee0dbd2b8f11fc51713
3
+ metadata.gz: 7653475a31f523308f996fcc6706ba164f1c0803
4
+ data.tar.gz: 9cfda8b85cb629ecaf060d9b56d741817426a80b
5
5
  SHA512:
6
- metadata.gz: dd2e50644045a6da76e406840a0ddc7123766911f3ad29635516987544e8e52a38b737b75b1e23fe1520d0b8e5af6af79a3a6166cfb2dca3dd6060b080ff7d83
7
- data.tar.gz: 526452513f64ffc57f7c74e4b0e7800951a24b60ee07c7d1c02630bc25d607b4d54724fd662850f07ec5efbd260cfb1eece8e97410faf425f4258a1673106f53
6
+ metadata.gz: 1ae5bea9fc367cdd7d8cba5db9438f634ee4a1ad3fe438f36fa524f9a4df6b90312271f5e43113035917b471723971a6ba5c3380fdbafbea41845e9839f40c6a
7
+ data.tar.gz: a0002bf6452cf263af8ebf362b36b6a8917ac036979e5358e5fec47820b11349da0a6a1709ea3eb9b21cb670f9dd06160acf031fa625fbd1b8c621e848810e54
data/Dockerfile.release CHANGED
@@ -36,7 +36,7 @@ RUN apk add --no-cache \
36
36
 
37
37
  WORKDIR /app
38
38
 
39
- ENV SHIPITRON_VERSION=0.2.1
39
+ ENV SHIPITRON_VERSION=0.2.2
40
40
 
41
41
  RUN gem install shipitron -v ${SHIPITRON_VERSION} && \
42
42
  mkdir -p /home/shipitron/.ssh && \
@@ -28,5 +28,9 @@ module Shipitron
28
28
  def to_s
29
29
  "ecs_task:#{ecs_task},container_name:#{container_name},command:#{command}"
30
30
  end
31
+
32
+ def command_ary
33
+ command.split(' ')
34
+ end
31
35
  end
32
36
  end
@@ -26,7 +26,7 @@ module Shipitron
26
26
  container_overrides: [
27
27
  {
28
28
  name: post_build.container_name,
29
- command: [post_build.command]
29
+ command: post_build.command_ary
30
30
  }
31
31
  ]
32
32
  },
@@ -1,3 +1,3 @@
1
1
  module Shipitron
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipitron
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Schlesinger