chromedriver_update 0.1.0 → 0.1.2

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
  SHA256:
3
- metadata.gz: 8e2e0ec3f35a8a73dedd156304e33e590f2c702793f29577722ae78668a95de5
4
- data.tar.gz: 2d68c3ee0e614d3f3ffc5f986942753713dcf299d743000c34ee74ed9ba8a5fc
3
+ metadata.gz: e2fd4ee5796bd349a0cadacf7491796ef09d2091666843761de0b61389f8ea39
4
+ data.tar.gz: 15de734f9c6f193bff21ccc24bf1d2f724c9c2d8f033c04e7cc5c4be447cefc8
5
5
  SHA512:
6
- metadata.gz: f9fcfe6da61c09122a7b721a9492ef27a1d1062489c7dda6c6756f952208e1cead6e76f8c5af56494cb6b03ce6d23d530c196d5f4b19d42c73baf74b5f0962b6
7
- data.tar.gz: 90ff77b0f9adb67e2fc74fe5e25142a7fbc75a39b2dd8a66574a9f63c801b5ec2532fd9a66e8a8eb179fc427aedb3a4b14be74940ee8d379cfa60c3d2868c64c
6
+ metadata.gz: eec325cd223d2235f7b17ebad77b97eac5a8a8f0b8f88ac7a2b47f3f9ef778b23ebd1cf229c5134ac6b948bf74532a7a55c77214cc76011588a2af8ad231cc76
7
+ data.tar.gz: 521751f74060d7ba184c859f5d032ea20382f79875f7d4489e424198e22128e8b2b47eeedd02a05965b0903cf6ff1b894f6b3c5084dc02e3eb8b215153bc5a3b
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
 
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "chromedriver_update"
4
+ require_relative "../lib/chromedriver_update"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -1,3 +1,3 @@
1
1
  class ChromedriverUpdate
2
- VERSION = '0.1.0'.freeze
2
+ VERSION = '0.1.2'.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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthäus Beyrle