Install ci_reporter gem for Jenkins

This commit is contained in:
Jesse C. Fisher 2021-10-17 22:03:46 -07:00
parent a6e897574d
commit 278c3ec0a6
3 changed files with 16 additions and 0 deletions

View File

@ -22,6 +22,7 @@ gem 'simple_form'
gem 'dotenv-rails'
gem 'react-rails'
# gem 'react-rails-hot-loader'
gem 'ci_reporter_rspec'
group :development do
gem 'parallel_tests', group: :development
gem 'better_errors'

View File

@ -101,6 +101,11 @@ GEM
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
childprocess (3.0.0)
ci_reporter (2.0.0)
builder (>= 2.1.2)
ci_reporter_rspec (1.0.0)
ci_reporter (~> 2.0)
rspec (>= 2.14, < 4)
coderay (1.1.3)
coffee-rails (5.0.0)
coffee-script (>= 2.2.0)
@ -423,6 +428,7 @@ DEPENDENCIES
capistrano-rbenv
capistrano3-puma
capybara
ci_reporter_rspec
coffee-rails
database_cleaner
devise

View File

@ -5,3 +5,12 @@
require File.expand_path('../config/application', __FILE__)
Rails.application.load_tasks
require 'ci/reporter/rake/rspec'
# ...
# Rake code that creates a task called `:rspec`
# ...
task :rspec => 'ci:setup:rspec'
task :spec => 'ci:setup:rspec'