Difference between revisions of "Installing ruby with cucumber on a mac machine"

From Test Automation Wiki
Jump to: navigation, search
 
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
<div style="display: block; float:right; background-color: #FDFDFD; border: 1px #AFAFAF solid; padding: 10px;">
 +
<categorytree mode=all depth=1>Web_Test_Automation_Tutorial</categorytree>
 +
</div>
 +
 +
TODO: proper formatting
 +
 +
steps:
 +
* press apple+spacebar to open spotlight
 +
* type terminal and open terminal
 +
* type "brew install ruby"
 +
* verify ruby install with ruby -v
 +
 +
* Copy the code written below and paste it in the terminal (right click, paste)
 +
<source>
 +
gem update --system
 +
gem install watir-webdriver --no-document
 +
gem install lapis_lazuli --no-document
 +
gem install cucumber --no-document
 +
ruby -v
 +
</source>
 +
 +
 +
 +
 
[[Category:Installing ruby with cucumber]]
 
[[Category:Installing ruby with cucumber]]

Latest revision as of 17:13, 27 March 2019

TODO: proper formatting

steps:

  • press apple+spacebar to open spotlight
  • type terminal and open terminal
  • type "brew install ruby"
  • verify ruby install with ruby -v
  • Copy the code written below and paste it in the terminal (right click, paste)
gem update --system
gem install watir-webdriver --no-document
gem install lapis_lazuli --no-document
gem install cucumber --no-document
ruby -v