runbook 0.16.0 → 0.16.1
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/CHANGELOG.md +6 -0
- data/lib/runbook/run.rb +3 -3
- data/lib/runbook/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: 327e40dc7d06ef4ea604565750b4a6bd8aa7950453911d1d5331bb12f2dee453
|
4
|
+
data.tar.gz: ccd9929823ffbee857e883baaafc8aed5f1a95dd074b327dd2156fc669bd4aac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bce6f3b3bac537977fa9b94281bc3112d129259ae9b6caae1fe2b2eacb7653a192ab25e38aa0bf6b13cc8b3803d26c92d8cf620ba87376f91e5e3da75bb4e9a0
|
7
|
+
data.tar.gz: dfd5d2f7119852045414ab57b1ec16b64154e4b6dcca84526ed832dccfd10171df37ec433e41d47a0dd2af6884415ee2ce2c18fb141564ea7ddae93ee392e351
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,12 @@ This log maintains a list of all substantive changes to Runbook. The log include
|
|
4
4
|
|
5
5
|
## master
|
6
6
|
|
7
|
+
## `v0.16.1` (2019-11-25)
|
8
|
+
|
9
|
+
### Fixes:
|
10
|
+
|
11
|
+
* Fix bug preventing skipping of steps not nested in sections (Thanks celeen!)
|
12
|
+
|
7
13
|
## `v0.16.0` (2019-11-22)
|
8
14
|
|
9
15
|
### Fixes:
|
data/lib/runbook/run.rb
CHANGED
@@ -233,9 +233,9 @@ module Runbook
|
|
233
233
|
return
|
234
234
|
when :skip
|
235
235
|
position = metadata[:position]
|
236
|
-
|
237
|
-
new_step =
|
238
|
-
start_at =
|
236
|
+
split_position = position.split(".")
|
237
|
+
new_step = (split_position.pop.to_i + 1).to_s
|
238
|
+
start_at = (split_position << new_step).join(".")
|
239
239
|
metadata[:start_at] = start_at
|
240
240
|
when :jump
|
241
241
|
result = toolbox.ask("What position would you like to jump to?")
|
data/lib/runbook/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runbook
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pblesi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|