lbhrr 1.0.12 → 1.0.13
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 +13 -4
- data/lib/lbhrr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2fde9777acaaf59a7d408201ec6f38c4063b47b94063d7f88717cf99496a0fa
|
4
|
+
data.tar.gz: 8f97b2209dd7a3b2339ce4d04865b5365172af2a7b0de6e2526ce9475d5bf011
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83a5dea754b28fa49de722c20f5227b444d733244f5ff69619c4a55a3d5f403f6e99ec2fa3e3c1171bab45f5b5b4f76863c4fd2f44d0cd9197d055b04d3fcdb5
|
7
|
+
data.tar.gz: 921e119077c67a95a686549a853bcd308616d25d81874fea7869eccee45720993849bb8565b1e588b1e216b7f617e88382eddfff037c34958801d434b1885033
|
data/exe/lbhrr
CHANGED
@@ -21,11 +21,11 @@ class LbhrrCLI < Thor
|
|
21
21
|
vendor_path = File.join(Dir.pwd, "vendor")
|
22
22
|
FileUtils.rm_rf(vendor_path) if Dir.exist?(vendor_path)
|
23
23
|
`bundle config set --local path 'vendor/bundle'`
|
24
|
-
|
24
|
+
system "bundle install" or raise "Bundle install failed"
|
25
25
|
# Check if the repository is clean
|
26
26
|
puts "Git repository is dirty, committing changes..."
|
27
|
-
|
28
|
-
|
27
|
+
system("git add .") or raise "Failed to add changes to Git"
|
28
|
+
system("git commit -m 'packaged #{version}'") or raise "Failed to commit changes to Git"
|
29
29
|
puts "Packaging completed successfully."
|
30
30
|
rescue => e
|
31
31
|
puts "Packaging error: #{e.message}"
|
@@ -256,10 +256,19 @@ class LbhrrCLI < Thor
|
|
256
256
|
config = load_configuration
|
257
257
|
host = config["host"]
|
258
258
|
user = config["user"]
|
259
|
-
exec "ssh #{user}@#{host} 'harbr
|
259
|
+
exec "ssh #{user}@#{host} 'harbr peek #{container_name}'"
|
260
260
|
end
|
261
261
|
|
262
262
|
|
263
|
+
desc "activity", "harbr logs "
|
264
|
+
def activity
|
265
|
+
container_name = File.basename(Dir.pwd)
|
266
|
+
config = load_configuration
|
267
|
+
host = config["host"]
|
268
|
+
user = config["user"]
|
269
|
+
exec "ssh #{user}@#{host} 'harbr logs'"
|
270
|
+
end
|
271
|
+
|
263
272
|
|
264
273
|
desc "hoist", "Deploy an application using the configuration from config/manifest.yml to production"
|
265
274
|
def hoist
|
data/lib/lbhrr/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lbhrr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Delaney Kuldvee Burke
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-ssh
|