Sha256: b22d0665d4fa45589e0d59d1bcbd9e9e3190300caa5c040c929b4261e80fdc12

Contents?: true

Size: 484 Bytes

Versions: 15

Compression:

Stored size: 484 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  # Put spec opts in a file named .rspec in root
end

desc "Generate code coverage"
RSpec::Core::RakeTask.new(:coverage) do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec']
end

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
padrino_bootstrap_forms-0.1.2 Rakefile
padrino_bootstrap_forms-0.1.1 Rakefile
message_router-0.2.0 Rakefile
padrino_bootstrap_forms-0.1.0 Rakefile
padrino_bootstrap_forms-0.0.2 Rakefile
bootstrap_forms-2.0.4 Rakefile
padrino_bootstrap_forms-0.0.1 Rakefile
bootstrap_forms-2.0.3 Rakefile
message_router-0.1.3 Rakefile
message_router-0.1.2 Rakefile
bootstrap_forms-2.0.2 Rakefile
message_router-0.1.1 Rakefile
bootstrap_forms-2.0.1 Rakefile
bootstrap_forms-2.0.0 Rakefile
message_router-0.0.2 Rakefile