superbot-cloud 0.3.2 → 0.3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2a886e3702c71e296e2d610682a65939ad1725bf25313c142ce151e13cc4c50
|
|
4
|
+
data.tar.gz: 1fba2349f03ebfb382bde48f19e52f4357f1012a75c6f744738e4b4d6e590218
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0787d8bde10d2429ab455f540aaeb3a1e16df3f7ba3a929d59b5aafc7118e0814e25972a7024eaa4d24af881caea6ba5c9758f1e292b5e679cedfb8312ae1687'
|
|
7
|
+
data.tar.gz: a7c47127634f3598e5d71a4b4bd0ab4590952af21209a0a41b0e932a119c345da8e4589387ad7a0e9709e4640fcf0435725a7cbaaf016a693b1f82b3ab030e03
|
data/Gemfile.lock
CHANGED
|
@@ -5,17 +5,18 @@ module Superbot
|
|
|
5
5
|
module CLI
|
|
6
6
|
module Run
|
|
7
7
|
class ConsoleCommand < BaseCommand
|
|
8
|
-
parameter "ID", "the ID of run to
|
|
8
|
+
parameter "ID", "the ID of run to connect", required: true
|
|
9
9
|
|
|
10
10
|
def execute
|
|
11
11
|
abort "Run is not active anymore" if fetch_interaction[:status] == 'aborted'
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
Pry.start
|
|
13
|
+
# loop do
|
|
14
|
+
# printf '> '
|
|
15
|
+
# input = $stdin.gets
|
|
16
|
+
# exit if input.nil?
|
|
17
|
+
# cmd, arg = input.rstrip.split(' ')
|
|
18
|
+
# invoke_command(cmd, arg)
|
|
19
|
+
# end
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
private
|
|
@@ -5,7 +5,7 @@ module Superbot
|
|
|
5
5
|
module CLI
|
|
6
6
|
module Run
|
|
7
7
|
class CreateCommand < BaseCommand
|
|
8
|
-
parameter "NAME", "the name of the test to
|
|
8
|
+
parameter "NAME", "the name of the test to create run for", required: true
|
|
9
9
|
option ['--region'], 'REGION', 'Region for remote webdriver'
|
|
10
10
|
|
|
11
11
|
def execute
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: superbot-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Superbots
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multipart-post
|