We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ruby 2.1.10 Rails 3.2.22.5 I want to use ci_reporter to generate report xml, and then let jenkins publish error message. I added this into gemfile
gem "ci_reporter"
Put following code into Rakefile
Rakefile
require 'ci/reporter/rake/rspec' task :rspec => 'ci:setup:rspec'
Created a task file and put following code in lib/ci_report.rake
namespace :ci do task :all => ['ci:setup:rspec', 'rspec'] end
Then typed rake ci:all in terminal, but it threw this error
rake ci:all
rake aborted! LoadError: cannot load such file -- ci/reporter/rake/rspec
What did I miss?
The text was updated successfully, but these errors were encountered:
A bit of a late answer, but according to 213e412 it was extracted to a gem, after searching for it, i found https://rubygems.org/gems/ci_reporter_rspec
Sorry, something went wrong.
This issue can probably be closed @nicksieger
No branches or pull requests
ruby 2.1.10
Rails 3.2.22.5
I want to use ci_reporter to generate report xml, and then let jenkins publish error message.
I added this into gemfile
Put following code into
Rakefile
Created a task file and put following code in lib/ci_report.rake
Then typed
rake ci:all
in terminal, but it threw this errorWhat did I miss?
The text was updated successfully, but these errors were encountered: