Sha256: ca3b70a9be277c65f3e3cea3f299b10f244f10cc9b72a43fd5c7ac3eaea651ac

Contents?: true

Size: 306 Bytes

Versions: 3

Compression:

Stored size: 306 Bytes

Contents

require 'rspec/core/rake_task'

namespace :test do

  namespace :spec do

    desc "Run spec tests"
    RSpec::Core::RakeTask.new(:run) do |t|
      t.rspec_opts = ['--color']
      t.pattern = 'spec/'
    end
  end
end

task 'test:spec' => 'test:spec:run'
task :test => 'test:spec'
task :default => :test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
beaker-http-0.2.0 Rakefile
beaker-http-0.1.0 Rakefile
beaker-http-0.0.1 Rakefile