dockerkit 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 +4 -4
- data/lib/concerns/dkcomposer_task.rb +1 -1
- data/lib/dockerkit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53be58e69747b79123339cd9c1a9bad264fd17a5
|
|
4
|
+
data.tar.gz: 825d486a7785d294208149bcc331097f2e0f92bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e62678b8bccadd8d71c876ecf4356430a40ca5e184ae380636ac585ad19b6e0d80e4de376c5966bd934d3a01d878607c6f243ecff1c4788fce00cb3e37c03f1
|
|
7
|
+
data.tar.gz: 40fe2a0e173a1a0079c417cb5bcc2a3984bbc92051653ff6253890f23c5c12c7cb68221daaa589b033b4a3ec9ac1b139283afcf849fbe5228a3c03d2b2251461
|
|
@@ -130,7 +130,7 @@ module DkComposerTasks
|
|
|
130
130
|
def auto_load(loadpaths = [])
|
|
131
131
|
loadpaths ||= []
|
|
132
132
|
loadpaths.unshift '.'
|
|
133
|
-
loadpaths.concat(ENV['DK_LOAD_PATH'].split(':')).uniq!
|
|
133
|
+
loadpaths.concat((ENV['DK_LOAD_PATH'] || '').split(':')).uniq!
|
|
134
134
|
loadpaths.each do |path|
|
|
135
135
|
$LOAD_PATH.unshift(path) unless $LOAD_PATH.include?(path)
|
|
136
136
|
dk_pattern = "#{path}/*.dk.rb"
|
data/lib/dockerkit/version.rb
CHANGED