Sha256: c819ced59df53072b770108aa0799f9b69c8cbeb44b120fbcdacc0c747fd965b
Contents?: true
Size: 989 Bytes
Versions: 2
Compression:
Stored size: 989 Bytes
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:development, :doc) rescue Bundler::BundlerError => e STDERR.puts e.message STDERR.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'rake/clean' require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'ffi-msgpack' gem.licenses = ['MIT'] gem.summary = %Q{FFI bindings for msgpack} gem.email = 'postmodern.mod3@gmail.com' gem.homepage = %Q{http://github.com/postmodern/ffi-msgpack} gem.description = %Q{Ruby FFI bindings for the msgpack library.} gem.authors = ['Postmodern'] gem.requirements = ['libmsgpack, 0.4.2 or greater'] gem.has_rdoc = 'yard' end require 'spec/rake/spectask' desc "Run all specifications" Spec::Rake::SpecTask.new(:spec) do |spec| spec.libs += ['lib', 'spec'] spec.spec_files = FileList['spec/**/*_spec.rb'] spec.spec_opts = ['--options', '.specopts'] end task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffi-msgpack-0.1.1 | Rakefile |
ffi-msgpack-0.1.0 | Rakefile |