Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 495 Bytes

install-cucumber-ruby.md

File metadata and controls

21 lines (16 loc) · 495 Bytes
layout title
bootstrap
Install Cucumber-Ruby

{{page.title}}

Note: If you are using Ruby on Rails, see Install Cucumber-Rails.

Cucumber-Ruby is a ruby gem, and can be installed from the command line:

{% highlight text %} gem install cucumber {% endhighlight %}

If you are using Bundler, just add it to your Gemfile:

{% highlight ruby %} group :test do gem 'cucumber' end {% endhighlight %}