diff --git a/.travis.yml b/.travis.yml index a1d0d49da4b35ef688fff62eeb3046f74579115c..b342130423ae6e10c5106735f5f22824f53ec30e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: ruby env: - DB=mysql + - TRAVIS=true before_install: - sudo apt-get install libicu-dev -y - gem install charlock_holmes -v="0.6.9" diff --git a/Gemfile b/Gemfile index 324e1ce2c1b389a086dadf9500f899465de5aa73..73527498c7818b2ba02356a438e80730840f30d4 100644 --- a/Gemfile +++ b/Gemfile @@ -143,6 +143,7 @@ group :development do end group :development, :test do + gem 'coveralls', require: false gem 'rails-dev-tweaks' gem 'spinach-rails', '0.2.0' gem "rspec-rails", '2.12.2' diff --git a/Gemfile.lock b/Gemfile.lock index 36447188359728d7a8c3815abef24bd57011a432..f738907fd420b15523b3efaec1be1ed534be9ec1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -89,6 +89,12 @@ GEM colored (1.2) colorize (0.5.8) connection_pool (1.0.0) + coveralls (0.6.2) + colorize + multi_json (~> 1.3) + rest-client + simplecov (>= 0.7) + thor crack (0.3.1) daemons (1.1.9) database_cleaner (0.9.1) @@ -348,6 +354,8 @@ GEM redis-store (1.1.3) redis (>= 2.2.0) request_store (1.0.5) + rest-client (1.6.7) + mime-types (>= 1.16) rspec (2.12.0) rspec-core (~> 2.12.0) rspec-expectations (~> 2.12.0) @@ -468,6 +476,7 @@ DEPENDENCIES chosen-rails (= 0.9.8) coffee-rails (~> 3.2.2) colored + coveralls database_cleaner devise draper diff --git a/features/support/env.rb b/features/support/env.rb index 2fd7ffdb81307984bdad1dd856644840a7464cbd..03521afb9a176419c3886749fd6b107f2c493592 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,5 +1,10 @@ require 'simplecov' unless ENV['CI'] +if ENV['TRAVIS'] + require 'coveralls' + Coveralls.wear! +end + ENV['RAILS_ENV'] = 'test' require './config/environment' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index f6f70cfd96aa6ab5f7f92b517a94f02aa943b30c..30518cc2b9f358f783882c7d9a81ebaf5d890c9b 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,9 @@ require 'simplecov' unless ENV['CI'] +if ENV['TRAVIS'] + require 'coveralls' + Coveralls.wear! +end # This file is copied to spec/ when you run 'rails generate rspec:install' ENV["RAILS_ENV"] ||= 'test'