summaryrefslogtreecommitdiffstats
path: root/tasks/ffi.rake
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-19 10:23:12 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-19 10:23:12 +0200
commit4b29c337347b40528d672cd2e2b52b1c9efe33e5 (patch)
tree8c4bfd0e73790754a834491c69283767d173cde6 /tasks/ffi.rake
parenta378e73d9da612960d0cf3eef5011c13c0139c39 (diff)
downloadffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.zip
ffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.tar.gz
goto bundler
Diffstat (limited to 'tasks/ffi.rake')
-rw-r--r--tasks/ffi.rake22
1 files changed, 0 insertions, 22 deletions
diff --git a/tasks/ffi.rake b/tasks/ffi.rake
deleted file mode 100644
index 0ade669..0000000
--- a/tasks/ffi.rake
+++ /dev/null
@@ -1,22 +0,0 @@
-# -*- coding: UTF-8 -*-
-#
-namespace :ffi do
- #
- desc "extract api out of enlightenment headers, then generate bindings"
- task :run => [ :api, :ruby ]
- #
- desc "extract api out of enlightenment headers"
- task :api do
- sh './tools/extract-api.sh'
- end
- #
- desc "generate ffi bindings"
- task :ruby do
- sh './tools/genruby.rb'
- end
-end
-#
-desc 'Alias to ffi:run'
-task :ffi => 'ffi:run'
-#
-# EOF