Rakefile in impala-0.1.6 vs Rakefile in impala-0.2.0
- old
+ new
@@ -10,15 +10,13 @@
end
THRIFT_FILES = FileList['./thrift/*.thrift']
GENNED_FILES = FileList['./lib/impala/protocol/*']
-# eden only works on 1.8, unfortunately =(
task :gen do
THRIFT_FILES.each do |f|
sh "thrift -out lib/impala/protocol --gen rb #{f}"
end
- sh "eden rewrite lib/impala/protocol/*.rb"
end
task :clean do
GENNED_FILES.each { |f| rm f }
end