testingbot 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +5 -0
- data/Gemfile +3 -1
- data/LICENSE +1 -1
- data/README.rdoc +89 -42
- data/Rakefile +15 -0
- data/examples/android.rb +14 -0
- data/examples/capybara.rb +10 -20
- data/examples/capybara_multiple_browsers.rb +38 -0
- data/examples/cucumber/README.rdoc +15 -0
- data/examples/cucumber/Rakefile +20 -0
- data/examples/cucumber/features/support/env.rb +5 -30
- data/examples/cucumber/features/youtube.feature +1 -0
- data/examples/test_rspec.rb +8 -30
- data/examples/test_rspec1.rb +1 -1
- data/examples/test_unit.rb +6 -13
- data/lib/testingbot.rb +3 -222
- data/lib/testingbot/api.rb +112 -0
- data/lib/testingbot/capybara.rb +49 -0
- data/lib/testingbot/config.rb +54 -2
- data/lib/testingbot/cucumber.rb +31 -26
- data/lib/testingbot/hooks.rb +255 -0
- data/lib/testingbot/selenium.rb +122 -0
- data/lib/testingbot/tunnel.rb +96 -8
- data/lib/testingbot/version.rb +2 -2
- data/spec/integration/api_spec.rb +88 -0
- data/spec/integration/selenium1_spec.rb +53 -0
- data/spec/integration/selenium2_spec.rb +60 -0
- data/spec/integration/tunnel_spec.rb +84 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/unit/api_spec.rb +17 -0
- data/spec/unit/config_spec.rb +73 -0
- data/spec/unit/tunnel_spec.rb +41 -0
- data/testingbot.gemspec +6 -1
- data/vendor/Testingbot-Tunnel.jar +0 -0
- metadata +86 -6
- data/examples/cucumber/README +0 -3
Binary file
|
metadata
CHANGED
@@ -1,16 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testingbot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
- Jochen
|
8
|
+
- Jochen Delabie
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
13
|
-
dependencies:
|
12
|
+
date: 2012-04-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: json
|
16
|
+
requirement: &70361245219640 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70361245219640
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: net-http-persistent
|
27
|
+
requirement: &70361253323120 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70361253323120
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: selenium-webdriver
|
38
|
+
requirement: &70361253322700 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70361253322700
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rspec
|
49
|
+
requirement: &70361253322180 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.9.0
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *70361253322180
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: rake
|
60
|
+
requirement: &70361253321760 !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
type: :development
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *70361253321760
|
14
69
|
description: This gem makes using our Selenium grid on testingbot.com easy
|
15
70
|
email:
|
16
71
|
- info@testingbot.com
|
@@ -20,13 +75,17 @@ extensions: []
|
|
20
75
|
extra_rdoc_files: []
|
21
76
|
files:
|
22
77
|
- .gitignore
|
78
|
+
- .travis.yml
|
23
79
|
- Gemfile
|
24
80
|
- LICENSE
|
25
81
|
- README.rdoc
|
26
82
|
- Rakefile
|
27
83
|
- bin/testingbot
|
84
|
+
- examples/android.rb
|
28
85
|
- examples/capybara.rb
|
29
|
-
- examples/
|
86
|
+
- examples/capybara_multiple_browsers.rb
|
87
|
+
- examples/cucumber/README.rdoc
|
88
|
+
- examples/cucumber/Rakefile
|
30
89
|
- examples/cucumber/features/support/env.rb
|
31
90
|
- examples/cucumber/features/youtube.feature
|
32
91
|
- examples/cucumber/features/youtube_steps.rb
|
@@ -34,11 +93,24 @@ files:
|
|
34
93
|
- examples/test_rspec1.rb
|
35
94
|
- examples/test_unit.rb
|
36
95
|
- lib/testingbot.rb
|
96
|
+
- lib/testingbot/api.rb
|
97
|
+
- lib/testingbot/capybara.rb
|
37
98
|
- lib/testingbot/config.rb
|
38
99
|
- lib/testingbot/cucumber.rb
|
100
|
+
- lib/testingbot/hooks.rb
|
101
|
+
- lib/testingbot/selenium.rb
|
39
102
|
- lib/testingbot/tunnel.rb
|
40
103
|
- lib/testingbot/version.rb
|
104
|
+
- spec/integration/api_spec.rb
|
105
|
+
- spec/integration/selenium1_spec.rb
|
106
|
+
- spec/integration/selenium2_spec.rb
|
107
|
+
- spec/integration/tunnel_spec.rb
|
108
|
+
- spec/spec_helper.rb
|
109
|
+
- spec/unit/api_spec.rb
|
110
|
+
- spec/unit/config_spec.rb
|
111
|
+
- spec/unit/tunnel_spec.rb
|
41
112
|
- testingbot.gemspec
|
113
|
+
- vendor/Testingbot-Tunnel.jar
|
42
114
|
homepage: http://www.testingbot.com
|
43
115
|
licenses: []
|
44
116
|
post_install_message:
|
@@ -63,4 +135,12 @@ rubygems_version: 1.8.10
|
|
63
135
|
signing_key:
|
64
136
|
specification_version: 3
|
65
137
|
summary: Ruby Gem to be used with testingbot.com
|
66
|
-
test_files:
|
138
|
+
test_files:
|
139
|
+
- spec/integration/api_spec.rb
|
140
|
+
- spec/integration/selenium1_spec.rb
|
141
|
+
- spec/integration/selenium2_spec.rb
|
142
|
+
- spec/integration/tunnel_spec.rb
|
143
|
+
- spec/spec_helper.rb
|
144
|
+
- spec/unit/api_spec.rb
|
145
|
+
- spec/unit/config_spec.rb
|
146
|
+
- spec/unit/tunnel_spec.rb
|
data/examples/cucumber/README
DELETED