-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rspec support #40
Add rspec support #40
Conversation
Thanks for the merge. I'll release a new gem once the Travis CI tests pass. |
You are most welcome. Thanks for taking the time to write the gem. |
Actually, this leaves the test unit test task in the rakefile. What does the RSpec task look like in a Rakefile? You can just point me to a good example, and I can add it. |
Oops...I forgot to look at that. Here is what the Rakefile should look like for RSpec: require 'bundler' include Rake::DSL Bundler::GemHelper.install_tasks RSpec::Core::RakeTask.new do |t| Put spec opts in a file named .rspec in rootend CUKE_RESULTS = 'results.html' Rake::RDocTask.new do |rd| rd.main = "README.rdoc" rd.rdoc_files.include("README.rdoc","lib//*.rb","bin//*") task :default => [:spec,:features] |
Looks like it got pasted wrong. I'll work up another commit and get it to you. |
I think I have it working. Check out my commit in a sec Dave On Saturday, April 21, 2012 at 5:11 PM, Mike Gehard wrote:
|
OK added a commit to this branch to make the change. |
I think we crossed wires; here's what I just put up: f512794 It works from what I can tell… |
Allow RSpec users to use the testing framework that they are comfortable with instead of having to use Test::Unit.