Module: SeleniumPrep
- Defined in:
- lib/selenium-prep.rb,
lib/selenium-prep/urls.rb,
lib/selenium-prep/version.rb,
lib/selenium-prep/system/os.rb,
lib/selenium-prep/downloader.rb,
lib/selenium-prep/system/path.rb,
lib/selenium-prep/system/folder.rb,
lib/selenium-prep/config-checker.rb,
lib/selenium-prep/system/extract.rb
Defined Under Namespace
Modules: Downloader, System, URLs
Classes: ConfigChecker
Constant Summary
collapse
- VERSION =
'0.2.2'
Class Method Summary
collapse
Class Method Details
.path_set? ⇒ Boolean
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/selenium-prep.rb', line 26
def self.path_set?
System::OS.set_type
ConfigChecker.new
result = System::Path.set?
result ?
(puts "Selenium is ready to use!") :
(puts "Your PATH is not configured correctly. \n\nHere is what it's set to now:\n")
puts System::Path.path
result
end
|