Rakefile: comment out backtrace option for Rails 3 on travis-ci

This commit is contained in:
Jon Atack 2015-08-30 20:05:45 +02:00
parent 22da126e91
commit 41809aab37
1 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,10 @@ Bundler::GemHelper.install_tasks
RSpec::Core::RakeTask.new(:spec) do |rspec|
ENV['SPEC'] = 'spec/ransack/**/*_spec.rb'
rspec.rspec_opts = ['--backtrace']
# With Rails 3, using `--backtrace` raises 'invalid option' when testing.
# With Rails 4 and 5 it can be uncommented to see the backtrace:
#
# rspec.rspec_opts = ['--backtrace']
end
RSpec::Core::RakeTask.new(:mongoid) do |rspec|