Remove ERB templating support

pgx-vs-pq
Jack Christensen 2013-06-29 12:09:41 -05:00
parent 520da3a102
commit 6ab233c6f9
2 changed files with 0 additions and 28 deletions

View File

@ -11,20 +11,6 @@ TODO
Development
===========
ERB Templating
--------------
Sometimes Go code can be repetitive especially with dealing with functions that only differ in the type (e.g. ReadInt16, ReadInt32, ReadInt64). Some of this repetition can be eliminated by using a template preprocessor. pgx uses Ruby erb templates. Files that end in .go.erb are used to produce the corresponding .go files. These files are automatically automatically processed with [rake](https://github.com/jimweirich/rake).
Prerequisites:
* Ruby
* Rake
To automatically process .go.erb files and run the tests:
jack@hk-47~/dev/pgx$ rake test
Testing
-------

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