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

From Test Automation Wiki
Jump to: navigation, search
Line 7: Line 7:
 
[[File:winstall-ruby.png|right|225px]]
 
[[File:winstall-ruby.png|right|225px]]
 
# Download and the latest version of Ruby for windows '''32 bit''' on http://rubyinstaller.org/downloads/.
 
# Download and the latest version of Ruby for windows '''32 bit''' on http://rubyinstaller.org/downloads/.
 +
#* We're installing Ruby 32 bit version because it's more reliable than the 64 bit version
 
# Accept the terms
 
# Accept the terms
# Install to C:\Ruby
+
# Install Ruby in the default directory (for example Ruby version 2.3.3 will be installed in C:\Ruby23)
 
# Check all 3 checkboxes
 
# Check all 3 checkboxes
<blockquote>
 
* We're installing Ruby 32 bit because 64 bit can cause issues.
 
* You can install to a different folder, but in the rest of this tutorial we will refer to this folder.
 
</blockquote>
 
  
  
 
<h2>Installing DevKit</h2>
 
<h2>Installing DevKit</h2>
# Download and open the latest Devkit for Windows 32 bit on http://rubyinstaller.org/downloads/
+
# Download and open the latest Devkit for Windows '''32''' bit on http://rubyinstaller.org/downloads/
# Extract to C:\Ruby\devkit\
+
# In your ruby directory create a new Folder with the name: ''devkit''
 +
# Extract the Devkit into the newly created folder
 
#* [[File:winstall-devkit.png|225px]]
 
#* [[File:winstall-devkit.png|225px]]
 
# Open command prompt
 
# Open command prompt
 
## Go to Run (Windows Key + R)
 
## Go to Run (Windows Key + R)
## Write 'cmd'
+
## Write <code>CMD</code>
 
## Press enter
 
## Press enter
 
#* [[File:winstall-runcmd.png|225px]]
 
#* [[File:winstall-runcmd.png|225px]]
# Go to C:\Ruby\devkit
+
# In CMD go to your ruby directory (for example write the following <code>cd C:\Ruby\devkit</code>)
 
# Write <code>ruby dk.rb init</code>
 
# Write <code>ruby dk.rb init</code>
 
# Write <code>ruby dk.rb install</code>
 
# Write <code>ruby dk.rb install</code>
 
#* [[File:winstall-devkit-console.png|225px]]
 
#* [[File:winstall-devkit-console.png|225px]]
#Configure config.yml if needed.
 
#* When you get the message "Invalid configuration or no Rubies listed. Please fix 'config.yml'". Please update your config.yml to point to the ruby folder. More info can be found [http://stackoverflow.com/questions/21184452/invalid-configuration-or-no-rubies-listed here].
 
  
  

Revision as of 15:58, 13 March 2017


Installing Ruby

Winstall-ruby.png
  1. Download and the latest version of Ruby for windows 32 bit on http://rubyinstaller.org/downloads/.
    • We're installing Ruby 32 bit version because it's more reliable than the 64 bit version
  2. Accept the terms
  3. Install Ruby in the default directory (for example Ruby version 2.3.3 will be installed in C:\Ruby23)
  4. Check all 3 checkboxes


Installing DevKit

  1. Download and open the latest Devkit for Windows 32 bit on http://rubyinstaller.org/downloads/
  2. In your ruby directory create a new Folder with the name: devkit
  3. Extract the Devkit into the newly created folder
    • Winstall-devkit.png
  4. Open command prompt
    1. Go to Run (Windows Key + R)
    2. Write CMD
    3. Press enter
    • Winstall-runcmd.png
  5. In CMD go to your ruby directory (for example write the following cd C:\Ruby\devkit)
  6. Write ruby dk.rb init
  7. Write ruby dk.rb install
    • Winstall-devkit-console.png


Installing the necessary plugins

Now the installation of Ruby is complete, we can start installing the necessary plugins. These are so called “Gems” in Ruby. (A ruby is a gem, so the creators decided to call their plugins gems)

Copy the code written below and paste it in the CMD (right click, paste)

gem update --system
gem install lapis_lazuli --no-ri --no-rdoc

While you're installing, do not copy any other text onto your clipboard or let your computer go to sleep. If you do so, CMD will stop installing after the last line of text.

That's it! You're now ready to start setting up your cucumber project. You can read more about this in the next article.


Extra installations

if you'd like you can now also install Ansicon so that test results will be colored in the commandline output


Extra information

This section is for you to have a better understanding of what is happening during the installation. And what the commands we're using in console actually mean.

When we installed ruby, we checked a checkbox saying "Add ruby executables to your PATH". What we did here, was making ruby commands globally accessible in the console.

Now because these commands are global, we can go to devkit folder and write "ruby dk.rb install". Where we are actually saying: "Hey Ruby! I want you to look at this file dk.rb I have here and install it".

Same thing happens with "gem install lapis_lazuli": "Hey Ruby, I want you to do something with a gem, which is installing and the name is lapis_lazuli". After which Ruby is going to look online in their software system looking for a gem called lapis_lazuli.