diff --git a/Gemfile b/Gemfile index 4d1d849..2ca394b 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,10 @@ gemspec group :test do gem "rspec-rails" + + gem 'coveralls_reborn', require: false gem "capybara" + gem "sqlite3", "~> 1.4" end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 01bd9c4..1925531 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,3 +1,6 @@ +require 'coveralls' +Coveralls.wear! + # This file was generated by the `rails generate rspec:install` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # The generated `.rspec` file contains `--require spec_helper` which will cause