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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b27c6417570b34619186a139d1f2f35f67fe163
4
- data.tar.gz: d44aaaa38d2c9812211a30ca9745308e603b613c
3
+ metadata.gz: f9ad9e9fc87056fa9da1413bf86498adc5339d75
4
+ data.tar.gz: 327175318ebcb6c7ec24564811cab3f2ed800b4a
5
5
  SHA512:
6
- metadata.gz: a58a8c2bea9630f88771ec85327f2764b9999de6175090bb797b7b53530198aeb41f33997b7c82d086ec77c3773fac9453f00f1905915b7230cdd4cc54147fff
7
- data.tar.gz: 8eb1c83e25b5906d983352e14ee65869d8d777f7b109970fbada173f7d9250ea89026046cde099c72260e0909f87dd56c5032a2c307c93cad221a2321f583b0d
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
- Coming soon.
9
+ gem install selenium-prep
10
10
 
11
11
  == USAGE:
12
12
 
@@ -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.11',
5
- ie_driver: 'http://selenium-release.storage.googleapis.com/2.43',
6
- standalone_server: 'http://selenium-release.storage.googleapis.com/2.43' }
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.43.1.jar"
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.43.0.zip" ],
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.43.0.zip" ],
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
 
@@ -1,3 +1,3 @@
1
1
  module SeleniumPrep
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -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{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.}
12
- spec.description = %q{See README.txt for more.}
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.0
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-15 00:00:00.000000000 Z
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: See README.txt for more.
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: selenium-prep helps set up your machine for local Selenium execution for
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