I. Windows OS
- During installation, check box for
Add Ruby executable to PATH
- Download and extract the RubyInstaller DevKit to a known location (e.g.,
C:\DevKit
) (32-bit, 64-bit)
- Open a command prompt (Start, Run,
cmd
, Enter) - Change directories to the extracted DevKit directory (
cd C:\DevKit
) - Run the DevKit init script with
ruby dk.rb init
- Run the DevKit install script with
ruby dk.rb install
- Install Bundler with
gem install bundler
- Install RSpec version 3.4.0 with
gem install rspec -v 3.4.0
- Install the Selenium WebDriver Ruby bindings with
gem install selenium-webdriver