lbhrr 2.34.1 → 2.34.3
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 +7 -0
- 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: 5d030e25acdc9b942d2436836e3959b80ef95d6ac98edebe816d730b39f0983e
|
|
4
|
+
data.tar.gz: 9f94bf53d842203d2510ce0d6980bdb88a151c5104d1f49620b983a998ef2297
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5577076fbb8483730409945a726595a2662be9c24e9bfd5b4bd181580580172b9804a31316effe06b31ba6b3d4ec82a3ea9a930ef3fa97ee411a77892cd54f2
|
|
7
|
+
data.tar.gz: a6d45872055f4514ead0b97bb46713905ee3e4220607f7f37fcff7b8802f14f3f47972f8fb487e9ca3a97edb26a49415e66154bb36e774b3c89e24e088641003
|
data/exe/lbhrr
CHANGED
|
@@ -396,6 +396,7 @@ class LbhrrCLI < Thor
|
|
|
396
396
|
end
|
|
397
397
|
|
|
398
398
|
desc "hoist", "Deploy an application using the configuration from config/manifest.yml to next"
|
|
399
|
+
method_option :current, type: :boolean, aliases: "-c", desc: "curret version"
|
|
399
400
|
method_option :major, type: :boolean, aliases: "-ma", desc: "Increment major version"
|
|
400
401
|
method_option :msg, type: :boolean, aliases: "-msg", desc: "set the commit message"
|
|
401
402
|
method_option :minor, type: :boolean, aliases: "-mi", desc: "Increment minor version"
|
|
@@ -430,8 +431,14 @@ class LbhrrCLI < Thor
|
|
|
430
431
|
"patch"
|
|
431
432
|
end
|
|
432
433
|
|
|
434
|
+
|
|
433
435
|
version = increment_version(config["version"], focus.to_sym)
|
|
434
436
|
|
|
437
|
+
if options[:current]
|
|
438
|
+
version = config['version']
|
|
439
|
+
puts "re hoist #{version}"
|
|
440
|
+
end
|
|
441
|
+
|
|
435
442
|
modify_manifest do |config|
|
|
436
443
|
config["version"] = version
|
|
437
444
|
end
|
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: 2.34.
|
|
4
|
+
version: 2.34.3
|
|
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: 2024-03-
|
|
11
|
+
date: 2024-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-ssh
|