ecs-solo 0.1.3 → 0.1.4

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
  SHA256:
3
- metadata.gz: d838e8f98173c6a886d57c1a592169cc9ac5c6fa81c58f57330b24f9c4bd0527
4
- data.tar.gz: 91bbea6f2d972b2146987f0d694d7c1d5713af5ebd72283edd103d383be48a1d
3
+ metadata.gz: 94d88888150196db31ce8744dca3ad824ba045c10ae76fa583db47e36f0fa0ad
4
+ data.tar.gz: cec9990295b821eeb877761ee0e7e34099c803f7c0eb9ce743adb01113e68c72
5
5
  SHA512:
6
- metadata.gz: ce3c43fea1f615101080d86c69eb7d9ef1d43a797382281d7036f7004950f2289b40f08ab50d06167dc98abc42870f573d8dbe96eae8db65734a69aeacc08efd
7
- data.tar.gz: 5794b1ac398c150e6fd4c97a484c581ce1a811f1dc71c4aaac0d150971de70f78f131b3a93e40c3dedb2d34088f407136e533f7b0fd3364d1f48764036db5813
6
+ metadata.gz: 54120f56972568f1b5969516eed7899d87a5fb529349ec34920c9fd77c38244a81c105ae671355a4ce094599520a93d11836200e53e2bc7f64bfd4bcff397153
7
+ data.tar.gz: 54b152be37f3496574cdfb69d605a88ed6f3347d5abe60f68e43e11934f467dd53ef8cc44537c08fb4b48b910e7988d9f7c1a9be615abd0be963ea352636d3dd
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.1.4]
7
+ - fix space
8
+
6
9
  ## [0.1.3]
7
10
  - ability to control docker run options with ECS_SOLO_DOCKER_RUN_OPTIONS
8
11
 
@@ -33,7 +33,7 @@ module EcsSolo
33
33
 
34
34
  def run
35
35
  docker_options = ENV['ECS_SOLO_DOCKER_RUN_OPTIONS']
36
- sh "docker run --name #{name} -d #{docker_options}#{image} #{@command}"
36
+ sh "docker run --name #{name} -d #{docker_options} #{image} #{@command}"
37
37
  end
38
38
 
39
39
  def in_use?
@@ -1,3 +1,3 @@
1
1
  module EcsSolo
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecs-solo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
@@ -214,6 +214,7 @@ files:
214
214
  - pkg/ecs-solo-0.1.0.gem
215
215
  - pkg/ecs-solo-0.1.1.gem
216
216
  - pkg/ecs-solo-0.1.2.gem
217
+ - pkg/ecs-solo-0.1.3.gem
217
218
  - pkg/solo-0.1.0.gem
218
219
  - spec/cli_spec.rb
219
220
  - spec/spec_helper.rb