Sha256: d5d09fd5c981610ab01832dfd268e0cd242bdd4498e08b4a7e86ef1e26fae8f7

Contents?: true

Size: 452 Bytes

Versions: 15

Compression:

Stored size: 452 Bytes

Contents

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

task :spec => 'spec:all'

namespace :spec do
  task :all => [ :helper, :backend, :configuration ]

  RSpec::Core::RakeTask.new(:helper) do |t|
    t.pattern = "spec/helper/*_spec.rb"
  end

  RSpec::Core::RakeTask.new(:backend) do |t|
    t.pattern = "spec/backend/*/*_spec.rb"
  end

  RSpec::Core::RakeTask.new(:configuration) do |t|
    t.pattern = "spec/configuration_spec.rb"
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
specinfra-0.4.1 Rakefile
specinfra-0.4.0 Rakefile
specinfra-0.3.2 Rakefile
specinfra-0.3.1 Rakefile
specinfra-0.3.0 Rakefile
specinfra-0.2.1 Rakefile
specinfra-0.2.0 Rakefile
specinfra-0.1.1 Rakefile
specinfra-0.1.0 Rakefile
specinfra-0.0.17 Rakefile
specinfra-0.0.16 Rakefile
specinfra-0.0.15 Rakefile
specinfra-0.0.14 Rakefile
specinfra-0.0.13 Rakefile
specinfra-0.0.12 Rakefile