Sha256: 948528cf601da00d9347fd552e796bc28b12d3ae9a919459d0bce8741c965e77
Contents?: true
Size: 559 Bytes
Versions: 4
Compression:
Stored size: 559 Bytes
Contents
#!/usr/bin/env rake require 'bundler/gem_tasks' require 'rspec/core/rake_task' task :default => :spec RSpec::Core::RakeTask.new do |t| t.pattern = 'spec/**/*_spec.rb' end if RUBY_VERSION < '1.9' RSpec::Core::RakeTask.new('spec:coverage') do |t| t.pattern = 'spec/**/*_spec.rb' t.rcov = true t.rcov_opts = ['--exclude', 'spec/,/gems/,vendor/'] end else desc 'Run specs and create coverage output' RSpec::Core::RakeTask.new('spec:coverage') do |t| t.pattern = ['spec/gather_rspec_coverage.rb', 'spec/**/*_spec.rb'] end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
imap-backup-1.0.9 | Rakefile |
imap-backup-1.0.8 | Rakefile |
imap-backup-1.0.7 | Rakefile |
imap-backup-1.0.6 | Rakefile |