opswalrus 1.0.29 → 1.0.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/build.ops +3 -0
- data/lib/opswalrus/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: 312fb5f2541ced41eeec5b3b7eb1cc6774d0884dfc02487675dfe974d10504fa
|
4
|
+
data.tar.gz: 40658c9a4515ab5d5d5652e301991163136a339399c21f2acc37ea3546716e80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a24a2a3dc3e0287c0ed1cae15284dc45943dd209c18a5c9698cd8632c3a07d5da68e3abd4af468ff79511f42eb40fd17a72e1508ebe9358a492b288a51b0faa3
|
7
|
+
data.tar.gz: b240ef837c47d9b942c3c61c88e3ffbf73db88016374c037e012e8d5c901a1e6d07774591a9d91b14080232c04dc6e4c210cf9334bb8d6adc3988de637c48573
|
data/Gemfile.lock
CHANGED
data/build.ops
CHANGED
@@ -33,6 +33,9 @@ puts "Write version.rb for version #{version}"
|
|
33
33
|
core.template.write(path: "./lib/opswalrus/version.rb", template: template, variables: {version: version})
|
34
34
|
|
35
35
|
sh("Build gem") { 'gem build opswalrus.gemspec' }
|
36
|
+
|
37
|
+
sh("Commit Gemfile.lock and version.rb and git push changes") { 'git commit -am "gem {{ version }}" && git push' }
|
38
|
+
|
36
39
|
bw_status_output = sh("Check whether Bitwarden is locked or not") { 'bw status' }
|
37
40
|
# the status command currently exhibits an error in which it emits 'mac failed.' some number of times, so we need to filter that out
|
38
41
|
# see:
|
data/lib/opswalrus/version.rb
CHANGED