Skip to content

Instantly share code, notes, and snippets.

@jaredbeck
Created July 20, 2012 02:51
Show Gist options
  • Save jaredbeck/3148368 to your computer and use it in GitHub Desktop.
Save jaredbeck/3148368 to your computer and use it in GitHub Desktop.
Disable rspec verbosity
# Turn off rspec verbosity, so that the
# resultant rspec command, and all the
# spec names, are not echoed to stdout.
# See http://bit.ly/MoOoB3 -Jared 2012-07-19
if defined? RSpec
task(:spec).clear
RSpec::Core::RakeTask.new(:spec) do |t|
t.verbose = false
end
end
@jaredbeck
Copy link
Author

To preserve the dependencies ...

Thanks Daniel!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment