lbhrr 1.0.26 → 1.0.27
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/exe/lbhrr +3 -3
- data/lib/lbhrr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9316b3555eea12d2403c4b53f2294a09652458267b803938f725667b27b1ac4
|
|
4
|
+
data.tar.gz: aecf3fa3443f1ee16c92e59ae8936631e4e6d489194edad83fdfe316240c40ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 032ad826d862ae97d42e9ab573ce72ff00d985c3492931513b3de411e431ed08e5a6e0ea7e63d555c85c0d338b13c78907c584835ef9e9ed961f7141682a03e3
|
|
7
|
+
data.tar.gz: 6be6169070b182d3f54d254c81aa53391f49bee00d45e3d9a0c6fca6b08e0299c84ae714635793366dbfe93b4a5703ccf78271fe1450de66cd84b84a041ded21
|
data/exe/lbhrr
CHANGED
|
@@ -250,8 +250,8 @@ class LbhrrCLI < Thor
|
|
|
250
250
|
puts "App #{name} has been successfully destroyed."
|
|
251
251
|
end
|
|
252
252
|
|
|
253
|
-
desc "
|
|
254
|
-
def
|
|
253
|
+
desc "lift", "Deploy an application using the configuration from config/manifest.yml to next"
|
|
254
|
+
def lift
|
|
255
255
|
if manifest?
|
|
256
256
|
|
|
257
257
|
package
|
|
@@ -337,7 +337,7 @@ class LbhrrCLI < Thor
|
|
|
337
337
|
end
|
|
338
338
|
|
|
339
339
|
|
|
340
|
-
desc "hoist", "Deploy an application using the configuration from config/manifest.yml to
|
|
340
|
+
desc "hoist", "Deploy an application using the configuration from config/manifest.yml to live"
|
|
341
341
|
def hoist(name=nil)
|
|
342
342
|
config = load_configuration
|
|
343
343
|
host = config["host"]
|
data/lib/lbhrr/version.rb
CHANGED