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 +4 -4
- data/README.md +2 -2
- data/lib/chromedriver_update/version.rb +1 -1
- data/lib/chromedriver_update.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89e09a745e68a400b561f64a47442a9ca64075d08ffd9f2060e1e5aedbe2eca1
|
4
|
+
data.tar.gz: f67999c41ab25e1a974ed9d8bd2c97eb287d03dcd86e511e721ab546bf3007e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
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
|
|
data/lib/chromedriver_update.rb
CHANGED
@@ -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
|
|