docker-rails 0.5.0 → 0.5.1

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: 285dc77cef10695d9e17976de3d0d4ce48191422
4
- data.tar.gz: f8e2eca7b132eb6b97dced3fe8a04b64512d5dd8
3
+ metadata.gz: ac658d93c92f059a526791a850f110b58c3c7d02
4
+ data.tar.gz: e477c9bacda7849798dfaa22c1f0da71358cc810
5
5
  SHA512:
6
- metadata.gz: 8ab35a4c1b39129157b8962f383e02eb4004a37c798c2512aa49ad993e97f39e7fb5229a7b5901175a767b057d5d2ab38fbd20ba385534530cde0df53cb25a3a
7
- data.tar.gz: a9f88b10b75cdf755de564ed85479d6eee098ec522d98415fdc4211e23b57c092d83fb299fdd2dd697c8cfd6af5c4a41a980d5c3ef1b0f1bd0f0e2059935aed5
6
+ metadata.gz: 4e4cac1643b60c5d3e0f373042da97bac01b340881fa6d302f276ee16df12a91bc7fe7dc111622cb057312110baebb5ab605c0c1a8788fcd12d33a489a1390ad
7
+ data.tar.gz: 67754dd535eb6030733decd8c8f5dc3d46ce577cea9e7da33d49887e5596b28f75f988f7125c47d25e18c668d2fc5223e62a9f018e0b81572d232c395ec919d0
data/README.md CHANGED
@@ -57,7 +57,7 @@ or for local testing (uses `1` for build)
57
57
 
58
58
  ### General CLI
59
59
 
60
- Almost all of the commands below are in support of the `ci` command, so why not give access directly to them. Helpful additions include `bash_connect` to connect to a running container and `exec` the equivalent of `docker-compose run` (but thor complained and we can't use reserverd word `run`)
60
+ Almost all of the commands below are in support of the `ci` command, so why not give access directly to them? Helpful additions include `bash_connect` to connect to a running container and `exec` the equivalent of `docker-compose run` (but thor complained and we can't use reserverd word `run`)
61
61
 
62
62
  ```bash
63
63
  Commands:
@@ -57,7 +57,7 @@ module Docker
57
57
  extractions = service_config[:extract] unless service_config.nil?
58
58
  next if extractions.nil?
59
59
 
60
- puts "Processing extract for #{service_name}:"
60
+ puts "\n\nProcessing extract for #{service_name}:"
61
61
  puts '---------------------------------'
62
62
  container = get_container(service_name) rescue nil
63
63
  if container.nil?
@@ -218,7 +218,7 @@ module Docker
218
218
  def get_container(service_name)
219
219
  containers = Docker::Container.all(all: true)
220
220
  containers.each do |container|
221
- if is_build_container?(container) && container.compose.service.eql?(service_name)
221
+ if is_build_container?(container) && container.compose.service.eql?(service_name.to_s)
222
222
  return container
223
223
  end
224
224
  end
@@ -1,5 +1,5 @@
1
1
  module Docker
2
2
  module Rails
3
- VERSION = '0.5.0'
3
+ VERSION = '0.5.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docker-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ross