selenium_remote_control 1.0.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.
- data/lib/selenium_remote_control.rb +29 -0
- data/vendor/selenium-server.jar +0 -0
- metadata +63 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
module SeleniumRemoteControl
|
2
|
+
|
3
|
+
module Version
|
4
|
+
Major = 1
|
5
|
+
Minor = 0
|
6
|
+
Tiny = 3
|
7
|
+
|
8
|
+
def self.to_s
|
9
|
+
to_a.join('.')
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.to_a
|
13
|
+
[Major, Minor, Tiny]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
module_function
|
18
|
+
def version
|
19
|
+
Version.to_s
|
20
|
+
end
|
21
|
+
|
22
|
+
def jar_file
|
23
|
+
File.expand_path(
|
24
|
+
File.join(%w[.. vendor selenium-server.jar]), File.dirname(__FILE__)
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
SeleniumRC = SeleniumRemoteControl
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: selenium_remote_control
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
version: 1.0.3
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Dean Strelau
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-03-23 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Selenium RC jar file in a gem
|
22
|
+
email: dean@mintdigital.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files: []
|
28
|
+
|
29
|
+
files:
|
30
|
+
- lib/selenium_remote_control.rb
|
31
|
+
- vendor/selenium-server.jar
|
32
|
+
has_rdoc: true
|
33
|
+
homepage: http://github.com/mintdigital/selenium_remote_control
|
34
|
+
licenses: []
|
35
|
+
|
36
|
+
post_install_message:
|
37
|
+
rdoc_options: []
|
38
|
+
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
segments:
|
53
|
+
- 0
|
54
|
+
version: "0"
|
55
|
+
requirements: []
|
56
|
+
|
57
|
+
rubyforge_project:
|
58
|
+
rubygems_version: 1.3.6
|
59
|
+
signing_key:
|
60
|
+
specification_version: 3
|
61
|
+
summary: Selenium RC jar file in a gem
|
62
|
+
test_files: []
|
63
|
+
|