Skip to content

Instantly share code, notes, and snippets.

@krakatoa
Created October 1, 2013 12:40
Show Gist options
  • Save krakatoa/0767faf10b34dfafd42f to your computer and use it in GitHub Desktop.
Save krakatoa/0767faf10b34dfafd42f to your computer and use it in GitHub Desktop.
Rake para compilar ext y ragel
task :clean do
rm_f 'router.c'
rm_f 'router.rl'
rm_f 'router.o'
rm_f 'Makefile'
rm_f 'router.bundle'
rm_f 'router.so'
end
task :default do
ruby 'route_compiler.rb > router.rl'
sh 'ragel router.rl'
ruby 'extconf.rb'
sh 'make'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment