chromedriver_update 0.1.0 → 0.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e2e0ec3f35a8a73dedd156304e33e590f2c702793f29577722ae78668a95de5
4
- data.tar.gz: 2d68c3ee0e614d3f3ffc5f986942753713dcf299d743000c34ee74ed9ba8a5fc
3
+ metadata.gz: 89e09a745e68a400b561f64a47442a9ca64075d08ffd9f2060e1e5aedbe2eca1
4
+ data.tar.gz: f67999c41ab25e1a974ed9d8bd2c97eb287d03dcd86e511e721ab546bf3007e4
5
5
  SHA512:
6
- metadata.gz: f9fcfe6da61c09122a7b721a9492ef27a1d1062489c7dda6c6756f952208e1cead6e76f8c5af56494cb6b03ce6d23d530c196d5f4b19d42c73baf74b5f0962b6
7
- data.tar.gz: 90ff77b0f9adb67e2fc74fe5e25142a7fbc75a39b2dd8a66574a9f63c801b5ec2532fd9a66e8a8eb179fc427aedb3a4b14be74940ee8d379cfa60c3d2868c64c
6
+ metadata.gz: 6d513be2ec1c54597af343e52252c75ec37a36ff8370583f9376bf10f2126b37fcd7755cfddbb3f3a70481539681361282123007101e94f2f447a9660d01c262
7
+ data.tar.gz: b05a9409620a3f72704a8c05f847867d40262fa5caa1b0913ab799f866cc4c70653d2c8a919691631097140d49e5ba760c6fb5f36303be2880cd9c43322d82c5
data/README.md CHANGED
@@ -5,9 +5,9 @@
5
5
 
6
6
  > Update an existing installation of chromedriver fitting to the current installed version of chrome. Available for Ruby and as CLI command as well.
7
7
 
8
- Very basic tool, to ensure, that the current chromedriver is updat to date to the current installed Chrome. Automatically fetches the same driver version or the latest version below, to ensure it will work with the current installed chrome version.
8
+ Very basic tool, to ensure, that the current chromedriver is up to date to the current installed Chrome. Automatically fetches the same driver version or the latest version below, to ensure it will work with the current installed chrome version.
9
9
 
10
- The installed chromedriver is replaced with the new version. So it must have been setup initially and added to the PATH environment variable to use this script from then.
10
+ The installed chromedriver is replaced with the new version. So it must have been setup already and added to the PATH environment variable to use this script from then.
11
11
 
12
12
  Implemented for Linux, Windows and Mac.
13
13
 
@@ -1,3 +1,3 @@
1
1
  class ChromedriverUpdate
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.1.1'.freeze
3
3
  end
@@ -1,5 +1,3 @@
1
- require 'chromedriver_update/version'
2
-
3
1
  require 'os'
4
2
  require 'open-uri'
5
3
  require 'zip'
@@ -7,6 +5,7 @@ require 'httparty'
7
5
  require 'fileutils'
8
6
  require 'json'
9
7
 
8
+ require_relative 'chromedriver_update/version'
10
9
  require_relative 'custom_errors/chromedriver_not_found_error'
11
10
  require_relative 'custom_errors/chrome_not_found_error'
12
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chromedriver_update
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
  - Matthäus Beyrle