Sha256: 376b7eecfe8c890adb93e399308ae172c120c5d56b2ec4e1a83b88e98a5d665e
Contents?: true
Size: 968 Bytes
Versions: 2
Compression:
Stored size: 968 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 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'ffi-msgpack' gem.licenses = ['MIT'] gem.summary = %Q{FFI bindings for msgpack} gem.description = %Q{Ruby FFI bindings for the msgpack library.} gem.email = 'postmodern.mod3@gmail.com' gem.homepage = %Q{http://github.com/postmodern/ffi-msgpack} gem.authors = ['Postmodern'] gem.requirements = ['libmsgpack, 0.5.0 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.4 | Rakefile |
ffi-msgpack-0.1.3 | Rakefile |