Sha256: da6b823935586380b8684d86c1ec72d05b64f7c3b25402cb013dff29dcc0b8eb
Contents?: true
Size: 925 Bytes
Versions: 3
Compression:
Stored size: 925 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-libc' gem.licenses = ['MIT'] gem.summary = %Q{Useful FFI bindings for libc} gem.email = 'postmodern.mod3@gmail.com' gem.homepage = %Q{http://github.com/postmodern/ffi-libc} gem.description = %Q{Useful Ruby FFI bindings for libc.} gem.authors = ['Postmodern'] 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ffi-libc-0.0.3 | Rakefile |
ffi-libc-0.0.2 | Rakefile |
ffi-libc-0.0.1 | Rakefile |