Rakefile in fast_excel-0.2.5 vs Rakefile in fast_excel-0.2.6
- old
+ new
@@ -20,5 +20,13 @@
task :examples do
Dir.glob('examples/**/*.rb').each do |file|
require './' + file.sub(/\.rb$/, '')
end
end
+
+task :compile do
+ %x{
+ cd ext/fast_excel
+ ruby ./extconf.rb
+ make
+ }
+end