diff options
author | Andrea Fazzi <andrea.fazzi@alcacoop.it> | 2009-10-02 12:39:39 +0200 |
---|---|---|
committer | Andrea Fazzi <andrea.fazzi@alcacoop.it> | 2009-10-02 12:39:39 +0200 |
commit | 41e15d930abe4d4eda6a0bf3cdeb12879f22769f (patch) | |
tree | d273ba8beff517cd5fb235cd38c9aeb3706cc81d /Rakefile | |
parent | 27583122babb92871c54c3e84172340f54869a20 (diff) | |
download | ffi-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-- | Rakefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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" |