Sha256: 5f5b5f233779ee3385bd98d2eb87b3dac2d1f86841b2394748a08549e55cd522

Contents?: true

Size: 511 Bytes

Versions: 7

Compression:

Stored size: 511 Bytes

Contents

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

task :default => :spec

RSpec::Core::RakeTask.new

namespace :spec do
  desc "Run acceptance specs, forces AWS calls by cleaning vcr fixtures first,  ~/.br/aws.yml needs to be set up"
  task :acceptance => %w[clean:vcr] do
    ENV['LIVE'] = "1"
    Rake::Task["spec"].invoke
  end
end

task :clean => %w[clean:vcr]
namespace :clean do
  desc "clean vcr_cassettes fixtures"
  task :vcr do
    FileUtils.rm_rf('spec/fixtures/vcr_cassettes')
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
thor_template-0.0.5 lib/templates/Rakefile
gantree-0.0.3 Rakefile
gantree-0.0.2 Rakefile
thor_template-0.0.4 lib/templates/Rakefile
thor_template-0.0.3 lib/templates/Rakefile
thor_template-0.0.2 lib/templates/Rakefile
thor_template-0.0.1 lib/templates/Rakefile