Sha256: 45ad3bcd1a2fc99ce024849e5890a115a551a0a00659e2560e6d703da05ad0c6

Contents?: true

Size: 389 Bytes

Versions: 8

Compression:

Stored size: 389 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
  t.rspec_opts = %w[--color]
  t.pattern = 'spec/**/*_spec.rb'
end
task :default => :spec

RSpec::Core::RakeTask.new(:rcov) do |t|
  t.rspec_opts = %w[--color]
  t.pattern = 'spec/**/*_spec.rb'
  t.rcov = true
  t.rcov_opts = %w[--exclude spec/,gems/,Library/,.bundle]
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
regrit-0.2.0 Rakefile
regrit-0.1.0 Rakefile
gitable-0.2.3 Rakefile
gitable-0.2.2 Rakefile
martinemde-dm-salesforce-adapter-1.1.0 Rakefile
regrit-0.0.6 Rakefile
gitable-0.2.1 Rakefile
gitable-0.2.0 Rakefile