Sha256: 3b167799ef5fef0602501cb3f753a2955a4808e187b8df3bf9dac883145b133e
Contents?: true
Size: 866 Bytes
Versions: 4
Compression:
Stored size: 866 Bytes
Contents
begin require 'bones' rescue LoadError abort '### Please install the "bones" gem ###' end namespace :win do desc 'Build and install gem under Windows. Mr Bones just has to break things using tar.' task :install do PKG_PATH = File.join(File.dirname(__FILE__), 'pkg') NAME = File.basename(File.dirname(__FILE__)) rm_rf PKG_PATH system "gem build #{NAME}.gemspec" mkdir_p PKG_PATH mv "#{NAME}-0.7.1.gem", PKG_PATH system "gem install #{PKG_PATH}/#{NAME}-0.7.1.gem" end end Bones { name 'ffi-rzmq' authors 'Chuck Remes' email 'cremes@mac.com' url 'http://github.com/chuckremes/ffi-rzmq' readme_file 'README.rdoc' ruby_opts.clear # turn off warnings # necessary for MRI; unnecessary for JRuby and RBX # can't enable this until JRuby & RBX have a way of dealing with it cleanly #depend_on 'ffi', '>= 1.0.0' }
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ffi-rzmq-0.8.2 | Rakefile |
ffi-rzmq-0.8.0 | Rakefile |
ffi-rzmq-0.7.2 | Rakefile |
ffi-rzmq-0.7.1 | Rakefile |