superbot-cloud 0.3.4 → 0.3.5
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/Gemfile.lock +7 -7
- data/lib/superbot/cloud/cli/schedule/create_command.rb +2 -0
- data/lib/superbot/cloud/version.rb +1 -1
- data/superbot-cloud.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3726580487ed62cfc3a7014592bb2e7a75a63ce3ac632fe70d9f14cb92ad1a0
|
|
4
|
+
data.tar.gz: d2bca02a6cb2e56caf8a7694c97d1d5487926d4b0c9aba6f1717589b22d29358
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9efc6f1f2802f26cfefd921bdd467bd69e3cb40c8588d3a847fcd865563ba9459d09f513b14e119c4031951d40e8f1fc6691e1fc9420ac943709a116782ead6a
|
|
7
|
+
data.tar.gz: 53029f940a30e05c25387fa2a66dbcbd265b4c1e484d3d505df101cf295fb764eec28d88fb7890dc544a20e962f358b4076552a96e6911e5b4495d353f253c73
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
superbot-cloud (0.3.
|
|
4
|
+
superbot-cloud (0.3.5)
|
|
5
5
|
marcel (= 0.3.3)
|
|
6
6
|
multipart-post (= 2.0.0)
|
|
7
7
|
|
|
@@ -10,7 +10,7 @@ GEM
|
|
|
10
10
|
specs:
|
|
11
11
|
addressable (2.6.0)
|
|
12
12
|
public_suffix (>= 2.0.2, < 4.0)
|
|
13
|
-
archive-zip (0.
|
|
13
|
+
archive-zip (0.12.0)
|
|
14
14
|
io-like (~> 0.3.0)
|
|
15
15
|
ast (2.4.0)
|
|
16
16
|
childprocess (0.9.0)
|
|
@@ -77,17 +77,17 @@ GEM
|
|
|
77
77
|
rack-protection (= 2.0.5)
|
|
78
78
|
tilt (~> 2.0)
|
|
79
79
|
sinatra-silent (0.0.1)
|
|
80
|
-
superbot (0.4.
|
|
80
|
+
superbot (0.4.6)
|
|
81
81
|
clamp (= 1.2.1)
|
|
82
82
|
kommando (= 0.1.2)
|
|
83
83
|
launchy (= 2.4.3)
|
|
84
84
|
sinatra (= 2.0.5)
|
|
85
85
|
sinatra-silent (= 0.0.1)
|
|
86
|
-
superbot-cloud (= 0.3.
|
|
86
|
+
superbot-cloud (= 0.3.4)
|
|
87
87
|
superbot-record (= 0.1.0)
|
|
88
88
|
superbot-runner (= 0.1.3)
|
|
89
89
|
superbot-selenium-webdriver (= 1.0.5)
|
|
90
|
-
superbot-teleport (= 0.3.
|
|
90
|
+
superbot-teleport (= 0.3.4)
|
|
91
91
|
zaru (= 0.2.0)
|
|
92
92
|
superbot-record (0.1.0)
|
|
93
93
|
superbot-record-chrome
|
|
@@ -98,7 +98,7 @@ GEM
|
|
|
98
98
|
superbot-selenium-webdriver (1.0.5)
|
|
99
99
|
chromedriver-helper (= 2.1.0)
|
|
100
100
|
selenium-webdriver (= 3.141.0)
|
|
101
|
-
superbot-teleport (0.3.
|
|
101
|
+
superbot-teleport (0.3.4)
|
|
102
102
|
excon
|
|
103
103
|
tilt (2.0.9)
|
|
104
104
|
unicode-display_width (1.4.0)
|
|
@@ -112,7 +112,7 @@ DEPENDENCIES
|
|
|
112
112
|
rake (~> 10.0)
|
|
113
113
|
rspec (~> 3.0)
|
|
114
114
|
rubocop (~> 0.53)
|
|
115
|
-
superbot (~> 0.4.
|
|
115
|
+
superbot (~> 0.4.6)
|
|
116
116
|
superbot-cloud!
|
|
117
117
|
|
|
118
118
|
BUNDLED WITH
|
|
@@ -9,6 +9,7 @@ module Superbot
|
|
|
9
9
|
option ['--region'], 'REGION', 'Region for remote webdriver'
|
|
10
10
|
option ['--when'], 'WHEN', "When to schedule a test (either asap or cron expression)", default: 'asap', attribute_name: :starts_at
|
|
11
11
|
option ['--bots'], 'BOTS', 'Number of running cloud superbots', default: 1
|
|
12
|
+
option ['--bots-delay'], 'BOTS_DELAY', 'Maximum delay before the bot starts'
|
|
12
13
|
option ['--loop'], 'LOOP_COUNT', 'Number of runs for each bot', default: 1, attribute_name: :loop_count
|
|
13
14
|
option ['--base-url'], 'BASE_URL', 'Base project URL for test'
|
|
14
15
|
option ['--local-webdriver'], :flag, 'Use local webdriver instead of cloud webdriver api', hidden: true
|
|
@@ -28,6 +29,7 @@ module Superbot
|
|
|
28
29
|
region: region,
|
|
29
30
|
organization_name: organization,
|
|
30
31
|
parallel: bots,
|
|
32
|
+
bots_delay: bots_delay,
|
|
31
33
|
starts_at: starts_at,
|
|
32
34
|
loop: loop_count,
|
|
33
35
|
webdriver_api: local_webdriver?,
|
data/superbot-cloud.gemspec
CHANGED
|
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
|
|
|
36
36
|
spec.add_runtime_dependency "multipart-post", "2.0.0"
|
|
37
37
|
spec.add_runtime_dependency "marcel", "0.3.3"
|
|
38
38
|
|
|
39
|
-
spec.add_development_dependency "superbot", "~> 0.4.
|
|
39
|
+
spec.add_development_dependency "superbot", "~> 0.4.6"
|
|
40
40
|
spec.add_development_dependency "bundler", "~> 1.16"
|
|
41
41
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
42
42
|
spec.add_development_dependency "rspec", "~> 3.0"
|
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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Superbots
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-03-
|
|
11
|
+
date: 2019-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multipart-post
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.4.
|
|
47
|
+
version: 0.4.6
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.4.
|
|
54
|
+
version: 0.4.6
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: bundler
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|