Skip to content

Commit

Permalink
Bump to 3.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoorlakshya committed Mar 19, 2019
1 parent 1a52e8b commit a164075
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.7.0 (2019-03-19)

* `chromedriver` version now matches the installed Chrome version. See [#32](https://github.com/titusfortner/webdrivers/pull/32).

### 3.6.0 (2018-12-30)

* Put net_http_ssl_fix inside a toggle since it can cause other issues
Expand Down
35 changes: 18 additions & 17 deletions webdrivers.gemspec
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

$LOAD_PATH.push File.expand_path('../lib', __dir__)

Gem::Specification.new do |s|
s.name = "webdrivers"
s.version = "3.6.0"
s.authors = ["Titus Fortner"]
s.email = ["titusfortner@gmail.com"]
s.homepage = "https://github.com/titusfortner/webdrivers"
s.summary = "Easy download and use of browser drivers."
s.description = "Run Selenium tests more easily with install and updates for all supported webdrivers."
s.licenses = ["MIT"]
s.name = 'webdrivers'
s.version = '3.7.0'
s.authors = ['Titus Fortner', 'Lakshya Kapoor']
s.email = %w[titusfortner@gmail.com kapoorlakshya@gmail.com]
s.homepage = 'https://github.com/titusfortner/webdrivers'
s.summary = 'Easy download and use of browser drivers.'
s.description = 'Run Selenium tests more easily with install and updates for all supported webdrivers.'
s.licenses = ['MIT']

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']

s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "rake", "~> 10.0"
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 3.0'

s.add_runtime_dependency "net_http_ssl_fix"
s.add_runtime_dependency "nokogiri", "~> 1.6"
s.add_runtime_dependency "rubyzip", "~> 1.0"
s.add_runtime_dependency "selenium-webdriver", "~> 3.0"
s.add_runtime_dependency 'net_http_ssl_fix'
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'rubyzip', '~> 1.0'
s.add_runtime_dependency 'selenium-webdriver', '~> 3.0'
end

0 comments on commit a164075

Please sign in to comment.