Sha256: eb41c83ba9dadc98411c63ce4b04fc9a9cfeee215472078a236b806de82f4fbd

Contents?: true

Size: 296 Bytes

Versions: 1

Compression:

Stored size: 296 Bytes

Contents

project_root = File.dirname(File.absolute_path(__FILE__))
rcurse_path = project_root + "/lib/rcurse.rb"

task :spec do
	system "rspec --color -f d -r #{rcurse_path}"
end

task :clean do
	Dir.glob(project_root + "/spec-data/*.out") do |f|
		File.delete f
	end
end

task :default => [:spec, :clean]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rcurse-0.5.1 Rakefile