No commit activity in last 3 years
No release in over 3 years
Connects CI::Reporter to Spinach
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.8.7
 Project Readme

CI::Reporter::Spinach

Connects Spinach to CI::Reporter, and then to your CI system.

Gem Version Build Status Dependency Status Code Climate

Supported versions

The latest release of Spinach 0.8 is supported.

Installation

Add this line to your application's Gemfile:

gem 'ci_reporter_spinach'

And then install it:

$ bundle

Usage

Require the reporter in your Rakefile, and ensure that ci:setup:spinach is a dependency of your Spinach task.

Unlike other CI::Reporter gems, you must also explictly tell Spinach to use the reporter!

require 'ci/reporter/rake/spinach'

task :spinach do
  # Note `-r ci_reporter`!
  exec "spinach -r ci_reporter"
end

task :spinach => 'ci:setup:spinach'

Advanced usage

Refer to the shared documentation for details on setting up CI::Reporter.

Cucumber

If you use both Cucumber and Spinach, you are likely to see strange errors due to gherkin and gherkin-ruby both being loaded. Choose only one of these frameworks.

Contributing

  1. Fork it ( https://github.com/ci-reporter/ci_reporter_spinach/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Add a failing test.
  4. Commit your changes (git commit -am 'Add some feature')
  5. Ensure tests pass.
  6. Push to the branch (git push origin my-new-feature)
  7. Create a new Pull Request