selenium-connect 1.9.1 → 1.9.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,7 +30,7 @@ module SeleniumConnect
30
30
  def config_browser
31
31
  profile = get_profile
32
32
  profile.assume_untrusted_certificate_issuer = false unless profile.nil?
33
- profile.log_file = File.join(config.log, 'firefox.log') if config.log
33
+ profile.log_file = File.join(Dir.getwd, config.log, 'firefox.log') if config.log
34
34
  browser = Selenium::WebDriver::Remote::Capabilities.firefox
35
35
  browser[:firefox_binary] = config.browser_path if config.browser_path
36
36
  browser[:firefox_profile] = profile
@@ -35,7 +35,7 @@ module SeleniumConnect
35
35
  t.background
36
36
  #{
37
37
  if configuration.log
38
- "t.log = '#{configuration.log}/server.log'"
38
+ "t.log = '#{File.join(Dir.getwd, configuration.log, 'server.log')}'"
39
39
  else
40
40
  "t.log = false"
41
41
  end
@@ -1,12 +1,12 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'selenium-connect'
3
- s.version = '1.9.1'
3
+ s.version = '1.9.3'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.authors = ['Dave Haeffner']
6
6
  s.email = ['dave@arrgyle.com']
7
7
  s.homepage = 'https://github.com/arrgyle/selenium-connect'
8
8
  s.summary = 'A stupid simple way to run your Selenium tests on localhost, against a Selenium Grid, or in the cloud (e.g. SauceLabs).'
9
- s.description = 'Minor cleanup and refactoring.'
9
+ s.description = 'Fixed logging bug.'
10
10
  s.license = 'MIT'
11
11
 
12
12
  s.files = `git ls-files`.split($/)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selenium-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.1
4
+ version: 1.9.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-21 00:00:00.000000000 Z
12
+ date: 2013-06-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: selenium-webdriver
@@ -75,7 +75,7 @@ dependencies:
75
75
  - - ! '>='
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
- description: Minor cleanup and refactoring.
78
+ description: Fixed logging bug.
79
79
  email:
80
80
  - dave@arrgyle.com
81
81
  executables: []