Skip to content

Commit

Permalink
Merge 3da7059 into 49372b2
Browse files Browse the repository at this point in the history
  • Loading branch information
josepjaume committed Jul 2, 2014
2 parents 49372b2 + 3da7059 commit 43ce424
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -3,5 +3,7 @@ rvm:
- 2.0.0
- 2.1.2
- rbx-2
- jruby-19mode

cache: bundler
script: "bundle exec rake"
4 changes: 0 additions & 4 deletions Gemfile
Expand Up @@ -3,16 +3,12 @@ source 'http://rubygems.org'
# Specify your gem's dependencies in spinach.gemspec
gemspec

gem 'rake'
gem 'coveralls', require: false

group :test do
gem 'guard'
gem 'guard-minitest'
gem 'guard-spinach'
gem 'capybara'
gem "rspec"
gem 'fakefs'
end

group :darwin do
Expand Down
11 changes: 6 additions & 5 deletions README.markdown
@@ -1,6 +1,6 @@
# Spinach - BDD framework on top of Gherkin
# Spinach - BDD framework on top of Gherkin
[![Gem Version](https://badge.fury.io/rb/spinach.png)](http://badge.fury.io/rb/spinach)
[![Build Status](https://secure.travis-ci.org/codegram/spinach.png)](http://travis-ci.org/codegram/spinach)
[![Build Status](https://secure.travis-ci.org/codegram/spinach.png)](http://travis-ci.org/codegram/spinach)
[![Dependency Status](https://gemnasium.com/codegram/spinach.png)](http://gemnasium.com/codegram/spinach)
[![Coverage Status](https://coveralls.io/repos/codegram/spinach/badge.png?branch=master)](https://coveralls.io/r/codegram/spinach)

Expand All @@ -18,7 +18,8 @@ Conceived as an alternative to Cucumber, here are some of its design goals:
* Step reusability: In case you want to reuse steps across features, you can
always wrap those in plain ol' Ruby modules.

Spinach is tested against **MRI 1.9.3 and 2.0.0**.
Spinach is tested against **MRI 1.9.3, 2.0 and 2.1** as well as **JRuby 1.7+**
and **Rubinius 2.2+**.

We are not planning to make it compatible with MRI 1.8.7 since, you know, this
would be irresponsible :)
Expand Down Expand Up @@ -168,7 +169,7 @@ This is one way to make that reusable:
module CommonSteps
module Login
include Spinach::DSL

step 'I am logged in' do
# log in stuff...
end
Expand Down Expand Up @@ -287,7 +288,7 @@ class Spinach::Features::SessionTimeout < Spinach::FeatureSteps
after do
change_session_timeout_to original_timeout_value
end

# remaining steps
end
```
Expand Down
1 change: 1 addition & 0 deletions features/support/env.rb
@@ -1,3 +1,4 @@
require 'minitest/autorun'
require 'minitest/spec'
require_relative 'filesystem'

Expand Down
2 changes: 1 addition & 1 deletion spinach.gemspec
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
gem.homepage = "http://github.com/codegram/spinach"
gem.license = 'MIT'

gem.add_runtime_dependency 'gherkin-ruby', '>= 0.3.1'
gem.add_runtime_dependency 'gherkin-ruby', '>= 0.3.2'
gem.add_runtime_dependency 'colorize', '0.5.8'
gem.add_runtime_dependency 'json'
gem.add_development_dependency 'rake'
Expand Down

0 comments on commit 43ce424

Please sign in to comment.