lucian 0.2.7 → 0.2.8
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/lucian/engine.rb +2 -3
- data/lib/lucian/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: 136b47f5126bc78098179988f84194d8cdfa96f1
|
4
|
+
data.tar.gz: e67f60c7a0a85cbd785c2704afd5f32ef48cd97a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcb31780f98ed6d6cf3d1ef6b63d063ba2038afa9337f4222810997585088b6e5151c8b22e65a09a91e1980bf0a38c0a3e68938dcd20a9bdcdfde6e60ec7b238
|
7
|
+
data.tar.gz: 213add4bab3c424aa75f99eba28fa5e663ea0d1c49c77f252efd7da5de1490026ad7ef419c6e866d269804e405e661df814c2bca4eb6b7891a3211e44e1ae02a
|
data/lib/lucian/engine.rb
CHANGED
@@ -116,10 +116,9 @@ module Lucian
|
|
116
116
|
# Build lucian docker image
|
117
117
|
def build_lucian_image
|
118
118
|
BoardCaster.print("Building lucian image ..", "yellow")
|
119
|
-
|
120
|
-
FileUtils.cp(File.expand_path(File.expand_path(@compose_directory)+'./Gemfile'), @lucian_directory)
|
119
|
+
FileUtils.cp(File.expand_path(File.expand_path(@compose_directory)+'/Gemfile'), @lucian_directory)
|
121
120
|
image = Docker::Image.build_from_dir(@lucian_directory)
|
122
|
-
FileUtils.rm_rf(File.expand_path(File.expand_path(@compose_directory)+'
|
121
|
+
FileUtils.rm_rf(File.expand_path(File.expand_path(@compose_directory)+'/Gemfile'))
|
123
122
|
Lucian.image = image
|
124
123
|
return image
|
125
124
|
end
|
data/lib/lucian/version.rb
CHANGED