Skip to content

Commit

Permalink
coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
pocke committed Mar 17, 2015
1 parent a5fe869 commit 2cde7fa
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
@@ -0,0 +1 @@
service_name: travis-ci
3 changes: 1 addition & 2 deletions Gemfile
Expand Up @@ -80,8 +80,7 @@ group :development, :test do
gem "factory_girl_rails"
gem "database_cleaner"
gem 'guard-rspec'
gem 'simplecov', require: false
gem 'simplecov-rcov'
gem 'coveralls', require: false
gem 'named_let'

gem 'sqlite3'
Expand Down
18 changes: 14 additions & 4 deletions Gemfile.lock
Expand Up @@ -134,6 +134,12 @@ GEM
execjs
coffee-script-source (1.9.1)
commonjs (0.2.7)
coveralls (0.7.11)
multi_json (~> 1.10)
rest-client (>= 1.6.8, < 2)
simplecov (~> 0.9.1)
term-ansicolor (~> 1.3)
thor (~> 0.19.1)
database_cleaner (1.4.1)
date_validator (0.7.1)
activemodel
Expand Down Expand Up @@ -244,6 +250,7 @@ GEM
net-ssh-multi (1.2.0)
net-ssh (>= 2.6.5)
net-ssh-gateway (>= 1.2.0)
netrc (0.10.3)
nio4r (1.1.0)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
Expand Down Expand Up @@ -336,6 +343,9 @@ GEM
ref (1.0.5)
responders (2.1.0)
railties (>= 4.2.0, < 5)
rest-client (1.7.3)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
retryable (2.0.1)
ridley (4.1.2)
addressable
Expand Down Expand Up @@ -405,8 +415,6 @@ GEM
multi_json (~> 1.0)
simplecov-html (~> 0.9.0)
simplecov-html (0.9.0)
simplecov-rcov (0.2.3)
simplecov (>= 0.4.1)
slop (3.6.0)
specinfra (2.19.4)
net-scp
Expand All @@ -424,6 +432,8 @@ GEM
systemu (2.6.4)
tapp (1.5.0)
thor
term-ansicolor (1.3.0)
tins (~> 1.0)
therubyracer (0.12.1)
libv8 (~> 3.16.14.0)
ref
Expand All @@ -432,6 +442,7 @@ GEM
tilt (1.4.1)
timers (4.0.1)
hitimes
tins (1.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
uglifier (2.7.1)
Expand Down Expand Up @@ -474,6 +485,7 @@ DEPENDENCIES
capybara
chef (~> 12)
coffee-rails
coveralls
database_cleaner
date_validator
devise
Expand Down Expand Up @@ -510,8 +522,6 @@ DEPENDENCIES
sass-rails
sdoc
serverspec
simplecov
simplecov-rcov
specinfra
sqlite3
tapp
Expand Down
9 changes: 2 additions & 7 deletions spec/spec_helper.rb
Expand Up @@ -11,13 +11,8 @@
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'simplecov'
require 'simplecov-rcov'
SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
SimpleCov.start do
add_filter '/vendor/bundle/'
add_filter '/spec/'
add_filter '/db/'
end
require 'coveralls'
Coveralls.wear!('rails')

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Expand Down

0 comments on commit 2cde7fa

Please sign in to comment.