Commit 274c917f authored by Fabio Pelosin's avatar Fabio Pelosin

[SpecHelper] Use Coveralls only in Ruby > 1.8

parent b87148da
...@@ -2,10 +2,9 @@ ...@@ -2,10 +2,9 @@
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
if ENV['CI'] || ENV['GENERATE_COVERAGE'] if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("1.9")
if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new("1.9") if ENV['CI'] || ENV['GENERATE_COVERAGE']
require 'simplecov' require 'simplecov'
end
require 'coveralls' require 'coveralls'
if ENV['CI'] if ENV['CI']
...@@ -16,6 +15,7 @@ if ENV['CI'] || ENV['GENERATE_COVERAGE'] ...@@ -16,6 +15,7 @@ if ENV['CI'] || ENV['GENERATE_COVERAGE']
SimpleCov.start do SimpleCov.start do
add_filter "/spec_helper/" add_filter "/spec_helper/"
end end
end
end end
# Set up # Set up
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment