spielbash 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/spielbash/interactor/record_interactor.rb +2 -2
- data/lib/spielbash/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6f59d4e60cfce540338fe998b9ea92faa63db86edaee7a0987d6b6395b066930
|
4
|
+
data.tar.gz: 7e34f7f7491803f1504cba2eed87f25859126ab59a0cae0a1402598f5023bbbf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9299ce490b31643655bce62b1f047ceba93090ade5dd1c0ed365ca36b9f3c24018e9bd6cea8cb78e2eb14ce1c9405bcced690e33e5a9496eb481eb7057008a38
|
7
|
+
data.tar.gz: 478f31a73483e607740fb963539861ddb16f5a972a4bd962283050ca7a5aba29313238df34d4cf273d42e0d54f9696f90903ed66cbf38a1276700a55c3b007b8
|
@@ -17,8 +17,8 @@ module Spielbash
|
|
17
17
|
context = Spielbash::Context.new(typing_delay_s, reading_delay_s, wait, width, height, wait_check_cmd)
|
18
18
|
|
19
19
|
actions = create_actions(context, script['scenes'])
|
20
|
-
pre_run_actions = create_actions(context, script['pre-run'])
|
21
|
-
post_run_actions = create_actions(context, script['post-run'])
|
20
|
+
pre_run_actions = script['pre-run'].nil? ? [] : create_actions(context, script['pre-run'])
|
21
|
+
post_run_actions = script['post-run'].nil? ? [] : create_actions(context, script['post-run'])
|
22
22
|
|
23
23
|
movie = Spielbash::Movie.new(title, pre_run_actions, actions, post_run_actions, context, output_path)
|
24
24
|
movie.shoot
|
data/lib/spielbash/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spielbash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anton Malinskiy
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gli
|
@@ -181,8 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: '0'
|
183
183
|
requirements: []
|
184
|
-
|
185
|
-
rubygems_version: 2.6.13
|
184
|
+
rubygems_version: 3.0.6
|
186
185
|
signing_key:
|
187
186
|
specification_version: 4
|
188
187
|
summary: Spielbash helps you to automate asciicasts with asciinema.
|