2
0

Remove ERB templating support

This commit is contained in:
Jack Christensen
2013-06-29 12:09:41 -05:00
parent 520da3a102
commit 6ab233c6f9
2 changed files with 0 additions and 28 deletions
-14
View File
@@ -1,14 +0,0 @@
require 'rake/clean'
ERB = FileList['*.go.erb']
GO = ERB.ext
CLEAN.include(GO)
rule '.go' => '.go.erb' do |t|
sh "erb #{t.source} > #{t.name}"
end
desc "Run tests"
task :test => GO do
sh "go test"
end