Sha256: 9d1c0a394221cdffafcea7169d240e4f792baaf289bee2e80eb1bfbf603beacd

Contents?: true

Size: 650 Bytes

Versions: 11

Compression:

Stored size: 650 Bytes

Contents

#!/usr/bin/env ruby

require_relative '../lib/chromedriver_update'

arg = ARGV[0]

if %w[version -v --version].include?(arg)
  puts "#{ChromedriverUpdate::VERSION}"
elsif arg.nil? || arg == ''
  ChromedriverUpdate.auto_update_chromedriver
else
  puts <<-TEXT
    
    chromedriver_update #{ChromedriverUpdate::VERSION}
    https://github.com/magynhard/chromedriver_update

    chromedriver_update -h --help     # show this info
    chromedriver_update -v --version  # show the libraries current version
    chromedriver_update               # automatically update the current chromedriver version fitting to the currently installed chrome

  TEXT
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
chromedriver_update-0.2.0 bin/chromedriver_update
chromedriver_update-0.1.9 bin/chromedriver_update
chromedriver_update-0.1.8 bin/chromedriver_update
chromedriver_update-0.1.7 bin/chromedriver_update
chromedriver_update-0.1.6 bin/chromedriver_update
chromedriver_update-0.1.5 bin/chromedriver_update
chromedriver_update-0.1.4 bin/chromedriver_update
chromedriver_update-0.1.3 bin/chromedriver_update
chromedriver_update-0.1.2 bin/chromedriver_update
chromedriver_update-0.1.1 bin/chromedriver_update
chromedriver_update-0.1.0 bin/chromedriver_update