diff --git a/Rakefile b/Rakefile index 21348df2..a90b5fb1 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,11 @@ end begin require 'rspec/core/rake_task' - RSpec::Core::RakeTask.new(:spec) + + RSpec::Core::RakeTask.new(:spec) do |t| + t.rspec_opts = %w{--tag ~slow} + end + exec << :spec rescue LoadError end