lux 1.1.1 → 1.1.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: 0fd99662ca55dd739c116f80bcbbbdc26c98f6a4
4
- data.tar.gz: cb79c6b5e618ee182704f274df738cd22df0c598
3
+ metadata.gz: a269c2150d11e90834382693432f1aabfd975afa
4
+ data.tar.gz: 39b2c1028d4dbd42dc7027d7d7307b1d12128bab
5
5
  SHA512:
6
- metadata.gz: 42b26318e4bb2564ff694785636f283ef07b7f351c100741e6d46a60d91c681c6a12a9e39281c679c07742ca53e864051fd8d3805abefda230e08e1f29c681b6
7
- data.tar.gz: ffa6dcc6397fc9c161dd8e38768653a5c97d01aabe1ce527fe5f3977e8abf0ab6cec21966df6ff9e5901f094f1581e5cc3ae172686e5af0627d22f0a2e40a88f
6
+ metadata.gz: '0792b22bc16d71aca5ae93c8febb6636db30515594dc99718806d7d9843dda21a9670828152d1642379d1f2c9639d3d94e5bed6a57b4b672a716d961c4583b8b'
7
+ data.tar.gz: e5d8f23122fcc7dafd049558b847a1180c4ecf95c7949c478c444ce5aa47d943c011a44bf6c927fef017a63bfd933da11dc59214b117d06043625dd6eeed28f2
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ lux (1.1.2)
2
+
3
+ * Missed an &. in the fix for 1.1.1
4
+
5
+ -- Nick Townsend <nick.townsend@mac.com> Fri, 13 Jan 2017 15:41:13 -0800
6
+
1
7
  lux (1.1.1)
2
8
 
3
9
  * Fixed bug where nameless images cause Rake tasks to fail.
@@ -82,7 +82,7 @@ module Lux
82
82
  unless DISABLED
83
83
  @container = Docker::Container.get(@containername) rescue nil
84
84
  @imagename += ':latest' unless @imagename.index(':')
85
- @image = Docker::Image.all.select{|i| i.info['RepoTags'].include? @imagename}.first
85
+ @image = Docker::Image.all.select{|i| i.info['RepoTags']&.include? @imagename}.first
86
86
  end
87
87
  end
88
88
 
@@ -1,3 +1,3 @@
1
1
  module Lux
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lux
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Townsend
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-31 00:00:00.000000000 Z
11
+ date: 2017-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor