summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndrea Fazzi <andrea.fazzi@alcacoop.it>2009-10-02 12:39:39 +0200
committerAndrea Fazzi <andrea.fazzi@alcacoop.it>2009-10-02 12:39:39 +0200
commit41e15d930abe4d4eda6a0bf3cdeb12879f22769f (patch)
treed273ba8beff517cd5fb235cd38c9aeb3706cc81d /Rakefile
parent27583122babb92871c54c3e84172340f54869a20 (diff)
downloadffi-41e15d930abe4d4eda6a0bf3cdeb12879f22769f.tar.gz
Fix gem specification issue that prevents to correctly build win32 fat binary gem
Update ffi.gemspec Add dependency to rake >= 0.8.7
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 8038cd7..3566f68 100644
--- a/Rakefile
+++ b/Rakefile
@@ -61,10 +61,12 @@ PROJ.rdoc.opts << '-x' << 'ext'
PROJ.ruby_opts = []
PROJ.ruby_opts << '-I' << BUILD_EXT_DIR unless RUBY_PLATFORM == "java"
-#RSpec
+# RSpec
PROJ.spec.opts << '--color' << '-fs'
-depend_on 'rake'
+# Dependencies
+
+depend_on 'rake', '>=0.8.7'
TEST_DEPS = [ LIBTEST ]
if RUBY_PLATFORM == "java"