Rakefile in sentry-rails-4.6.0 vs Rakefile in sentry-rails-4.6.1
- old
+ new
@@ -3,6 +3,12 @@
RSpec::Core::RakeTask.new(:spec).tap do |task|
task.rspec_opts = "--order rand"
end
-task :default => :spec
+task :isolated_specs do
+ Dir["spec/isolated/*"].each do |file|
+ sh "bundle exec ruby #{file}"
+ end
+end
+
+task :default => [:spec, :isolated_specs]