isomorfeus-puppetmaster 0.6.1 → 0.6.2
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/lib/isomorfeus/puppetmaster/dsl.rb +3 -2
- data/lib/isomorfeus/puppetmaster/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: 17136be066c39325b537f20a9f5f093512bff982e2e8f64f9ecf9dace486a8b5
|
|
4
|
+
data.tar.gz: e5a717dc5085ac14c02467595a2c1d484e3dcf74947982c2c00b0fadc0401205
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f76305302c2ad6ebfab41a8ac0de6f084fa3339bf66405d78a23af70242e4e6b01a239cc3f870ae36c360918e21fd0855f54b273d13699e7c43b8ed3286a3981
|
|
7
|
+
data.tar.gz: bf0e01ca48f758e71bb632c72fd4bae90612d81dec6bdd08f7efcc84442daa8c45bd00df4e5507cf860c7f8c6def1b7836986544f40dd8b0fcee0d921a77e89e
|
|
@@ -3,11 +3,12 @@ module Isomorfeus
|
|
|
3
3
|
module DSL
|
|
4
4
|
@@launch_options = nil
|
|
5
5
|
|
|
6
|
-
def set_launch_options(args: nil, channel: nil, default_viewport: nil, devtools: nil, dumpio: nil,
|
|
6
|
+
def set_launch_options(app: nil, args: nil, channel: nil, default_viewport: nil, devtools: nil, dumpio: nil,
|
|
7
7
|
env: nil, executable_path: nil, handle_SIGINT: nil, handle_SIGTERM: nil, handle_SIGHUP: nil,
|
|
8
8
|
headless: true, ignore_default_args: nil, ignore_https_errors: nil, pipe: nil,
|
|
9
9
|
product: :chrome, slow_mo: nil, timeout: nil, user_data_dir: nil)
|
|
10
10
|
@@launch_options = {
|
|
11
|
+
app: app,
|
|
11
12
|
args: args,
|
|
12
13
|
channel: channel&.to_s,
|
|
13
14
|
devtools: devtools,
|
|
@@ -55,7 +56,7 @@ module Isomorfeus
|
|
|
55
56
|
Isomorfeus::Puppetmaster.served_app.on_server(ruby_source, &block)
|
|
56
57
|
end
|
|
57
58
|
|
|
58
|
-
def new_session(app
|
|
59
|
+
def new_session(app: nil, args: nil, channel: nil, default_viewport: nil, devtools: nil, dumpio: nil,
|
|
59
60
|
env: nil, executable_path: nil, handle_SIGINT: nil, handle_SIGTERM: nil, handle_SIGHUP: nil,
|
|
60
61
|
headless: true, ignore_default_args: nil, ignore_https_errors: nil, pipe: nil,
|
|
61
62
|
product: :chrome, slow_mo: nil, timeout: nil, user_data_dir: nil)
|