selenium-prep 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.txt +2 -2
- data/lib/selenium-prep/urls.rb +6 -6
- data/lib/selenium-prep/version.rb +1 -1
- data/selenium-prep.gemspec +2 -2
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9ad9e9fc87056fa9da1413bf86498adc5339d75
|
4
|
+
data.tar.gz: 327175318ebcb6c7ec24564811cab3f2ed800b4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b3b38a7cdd6882eb1c3384953f66c1775765332bd3e2b154c83cbb821ea57aec61e7c58f5a5fed8e2caa22c51fb3ff9bb5fb89c37730c5df21448b83f3e41b4
|
7
|
+
data.tar.gz: e490be978bca3cc4c432ee724bf066e82a10843025b91e9f8c4a2488b55c05d4d5e65b05c121872c2c47f43fda44128b54bddd140bff6588580c0bb671a75a13
|
data/README.txt
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
== DESCRIPTION:
|
4
4
|
|
5
|
-
selenium-prep helps set up your machine for local Selenium execution for multiple browsers. It downloads (in parallel) the latest browser drivers and standalone server to a specified location. It will then check your system PATH to see if the directory is in it. If not, it will provide you with information on how to configure it for your operating system.
|
5
|
+
selenium-prep helps set up your machine for local Selenium execution for multiple browsers. It downloads (in parallel) the latest browser drivers and standalone server to a specified location. It will then check your system PATH to see if the download directory is in it. If not, it will provide you with information on how to configure it for your operating system.
|
6
6
|
|
7
7
|
== INSTALLATION:
|
8
8
|
|
9
|
-
|
9
|
+
gem install selenium-prep
|
10
10
|
|
11
11
|
== USAGE:
|
12
12
|
|
data/lib/selenium-prep/urls.rb
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
module SeleniumPrep
|
2
2
|
module URLs
|
3
3
|
|
4
|
-
BASE_URL = { chrome_driver: 'http://chromedriver.storage.googleapis.com/2.
|
5
|
-
ie_driver: 'http://selenium-release.storage.googleapis.com/2.
|
6
|
-
standalone_server: 'http://selenium-release.storage.googleapis.com/2.
|
4
|
+
BASE_URL = { chrome_driver: 'http://chromedriver.storage.googleapis.com/2.12',
|
5
|
+
ie_driver: 'http://selenium-release.storage.googleapis.com/2.44',
|
6
|
+
standalone_server: 'http://selenium-release.storage.googleapis.com/2.44' }
|
7
7
|
|
8
|
-
SERVER = "#{BASE_URL[:standalone_server]}/selenium-server-standalone-2.
|
8
|
+
SERVER = "#{BASE_URL[:standalone_server]}/selenium-server-standalone-2.44.0.jar"
|
9
9
|
|
10
10
|
DRIVERS = { mac32: [ "#{BASE_URL[:chrome_driver]}/chromedriver_mac32.zip" ],
|
11
11
|
win32: [ "#{BASE_URL[:chrome_driver]}/chromedriver_win32.zip",
|
12
|
-
"#{BASE_URL[:ie_driver]}/IEDriverServer_Win32_2.
|
12
|
+
"#{BASE_URL[:ie_driver]}/IEDriverServer_Win32_2.44.0.zip" ],
|
13
13
|
win64: [ "#{BASE_URL[:chrome_driver]}/chromedriver_win32.zip",
|
14
|
-
"#{BASE_URL[:ie_driver]}/IEDriverServer_x64_2.
|
14
|
+
"#{BASE_URL[:ie_driver]}/IEDriverServer_x64_2.44.0.zip" ],
|
15
15
|
linux32: [ "#{BASE_URL[:chrome_driver]}/chromedriver_linux32.zip" ],
|
16
16
|
linux64: [ "#{BASE_URL[:chrome_driver]}/chromedriver_linux64.zip" ] }
|
17
17
|
|
data/selenium-prep.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = SeleniumPrep::VERSION
|
9
9
|
spec.authors = ['Dave Haeffner']
|
10
10
|
spec.email = ['dhaeffner@gmail.com']
|
11
|
-
spec.summary = %q{
|
12
|
-
spec.description = %q{
|
11
|
+
spec.summary = %q{See README.txt for details}
|
12
|
+
spec.description = %q{selenium-prep helps set up your machine for local Selenium execution for multiple browsers. It downloads (in parallel) the latest browser drivers and standalone server to a specified location. It will then check your system PATH to see if the directory is in it. If not, it will provide you with information on how to configure it for your operating system.}
|
13
13
|
spec.homepage = 'https://github.com/tourdedave/selenium-prep'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: selenium-prep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Haeffner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -94,7 +94,11 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 4.3.1
|
97
|
-
description:
|
97
|
+
description: selenium-prep helps set up your machine for local Selenium execution
|
98
|
+
for multiple browsers. It downloads (in parallel) the latest browser drivers and
|
99
|
+
standalone server to a specified location. It will then check your system PATH to
|
100
|
+
see if the directory is in it. If not, it will provide you with information on how
|
101
|
+
to configure it for your operating system.
|
98
102
|
email:
|
99
103
|
- dhaeffner@gmail.com
|
100
104
|
executables: []
|
@@ -146,11 +150,7 @@ rubyforge_project:
|
|
146
150
|
rubygems_version: 2.2.2
|
147
151
|
signing_key:
|
148
152
|
specification_version: 4
|
149
|
-
summary:
|
150
|
-
multiple browsers. It downloads (in parallel) the latest browser drivers and standalone
|
151
|
-
server to a specified location. It will then check your system PATH to see if the
|
152
|
-
directory is in it. If not, it will provide you with information on how to configure
|
153
|
-
it for your operating system.
|
153
|
+
summary: See README.txt for details
|
154
154
|
test_files:
|
155
155
|
- spec/config-checker_spec.rb
|
156
156
|
- spec/downloader_spec.rb
|