diff --git a/.coveralls.yml b/.coveralls.yml new file mode 100644 index 0000000..6e64999 --- /dev/null +++ b/.coveralls.yml @@ -0,0 +1 @@ +service_name: travis-ci \ No newline at end of file diff --git a/.gitignore b/.gitignore index b04a8c8..d2cbafe 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ # rspec failure tracking .rspec_status + +/coverage \ No newline at end of file diff --git a/Gemfile b/Gemfile index 13051ed..d5643ac 100644 --- a/Gemfile +++ b/Gemfile @@ -7,6 +7,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } # Specify your gem's dependencies in process_chain.gemspec gemspec + group :development, :test do gem 'bundler' gem 'rake' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b6be134..12f6d0f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,6 +3,10 @@ require 'bundler/setup' require 'process_chain' +require 'coveralls' + +Coveralls.wear! + RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = '.rspec_status'