Rakefile in bugsnag-capistrano-1.1.2 vs Rakefile in bugsnag-capistrano-2.0.0
- old
+ new
@@ -23,17 +23,10 @@
# RSpec tasks
require 'rspec/core'
require "rspec/core/rake_task"
-tags = '--format documentation --tag always '
-
-begin
- require 'bugsnag'
- tags += '--tag with_notifier '
-rescue LoadError
- tags += '--tag without_notifier '
-end
+tags = '--format documentation'
RSpec::Core::RakeTask.new(:spec) do |opts|
opts.rspec_opts = tags
end
task :default => :spec