layout | title |
---|---|
bootstrap |
Install Cucumber-Ruby |
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 %}