No commit activity in last 3 years
No release in over 3 years
Support for RSpec 2.x formatters on 3.x
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.5, < 0.9
~> 1.3
= 1.2.1
= 1.3.2
~> 10.0.0

Runtime

~> 3.0
 Project Readme

RSpec::LegacyFormatters

This gem provides support for using legacy formatters (that is, those that were written against the RSpec 2 formatter API) with RSpec 3.

Installation

Add this line to your application's Gemfile:

gem 'rspec-legacy_formatters'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rspec-legacy_formatters

Usage

This gem MUST be required before the legacy formatter is loaded. We recommend you use RSpec's --require option, either from the command line:

$ rspec --require rspec/legacy_formatters --format MyCustomFormatter

...or by adding it to .rspec:

--require rspec/legacy_formatters

Contributing

  1. Fork it ( http://github.com/rspec/rspec-legacy_formatters/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request