Sha256: 5925d066171b27e175fc96cb0f8062db877a623cf778f2bc47bcaf3795f273dc

Contents?: true

Size: 456 Bytes

Versions: 3

Compression:

Stored size: 456 Bytes

Contents

#!/usr/bin/env rake

$:.push File.expand_path("../lib", __FILE__)

require "rspec/core/rake_task"
require "msewage-importer/version"
require "bundler/gem_tasks"

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

desc "Clean backup and swap files, and artifacts"
task :clean do
  require "fileutils"
  Dir["{pkg/*,**/*~,**/.*.sw?,coverage/**,spec/reports/**}"].each do |file|
    rm_rf file
  end
end

task default: :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
msewage-importer-0.0.3 Rakefile
msewage-importer-0.0.2 Rakefile
msewage-importer-0.0.1 Rakefile