task :createdb do user = ENV["USER"] || "postgres" sh "createdb -U #{user} -E UTF8 -O #{user} test" end task :default => :createdb