diff options
| author | dave.strock@gmail.com | 2011-06-23 20:46:25 -0500 |
|---|---|---|
| committer | Chris Sepic | 2011-06-28 13:16:29 -0500 |
| commit | 8367b64390e33f7991a28efbb213703cdfc89223 (patch) | |
| tree | 8b3436d4a0df2d5c263ea6956c0f1c854d1b9702 /Rakefile | |
| parent | e987ccb23d9a1a068c975aa4448dd324a23b5672 (diff) | |
| download | evernote-8367b64390e33f7991a28efbb213703cdfc89223.tar.bz2 | |
Added spec options to Rakefile, since spec.opts is not read in rspec2
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,10 +23,12 @@ end require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = 'spec/**/*_spec.rb' + spec.rspec_opts = %w{ --colour } end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' + spec.rspec_opts = %w{ --colour } spec.rcov = true end |
