Skip to content

Commit

Permalink
Fixing simplecov version to fix spec return value issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiedl committed May 10, 2014
1 parent 9894497 commit 40f7557
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ group :test do
gem 'database_cleaner'
gem 'guard-spork'
gem 'spork'
gem 'simplecov', require: false
gem 'simplecov', '~> 0.7.1', require: false
end

group :test do
Expand Down
12 changes: 5 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ GEM
thread_safe (~> 0.1)
warden (~> 1.2.3)
diff-lcs (1.2.5)
docile (1.1.3)
dotenv (0.7.0)
edit_mode (1.0.0)
jquery-rails
Expand Down Expand Up @@ -368,11 +367,10 @@ GEM
sprockets (~> 2.8, <= 2.11.0)
sprockets-rails (~> 2.0)
sexp_processor (4.4.3)
simplecov (0.8.2)
docile (~> 1.1.0)
multi_json
simplecov-html (~> 0.8.0)
simplecov-html (0.8.0)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
sinatra (1.4.5)
rack (~> 1.4)
rack-protection (~> 1.4)
Expand Down Expand Up @@ -496,7 +494,7 @@ DEPENDENCIES
redcarpet
rspec-rails
sass-rails (>= 3.2.3)
simplecov
simplecov (~> 0.7.1)
spork
therubyracer
tilt (~> 1.4.1)
Expand Down
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ RSpec::Core::RakeTask.new( :spec ) do |t|
t.fail_on_error = true
end

# Alternative:
#
# task :spec do
# exit system("bundle exec rspec ./spec/**/*_spec.rb ./vendor/engines/**/spec/**/*_spec.rb")
# end

# The default rake task, i.e. when running just `rake`, is `rake spec`.
#
task :default => :spec

0 comments on commit 40f7557

Please sign in to comment.