Sha256: baf431baf2f654cfbb43f9020a796dda2e2e393f1aaa59b3887831c81b41cfb1
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib'))) require 'ffi-inliner/version' begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end CLOBBER << '*~' << '*.*~' PROJ.name = 'ffi-inliner' PROJ.authors = 'Andrea Fazzi' PROJ.email = 'andrea.fazzi@alcacoop.it' PROJ.url = 'http://github.com/remogatto/ffi-inliner' PROJ.version = Inliner::VERSION PROJ.readme_file = 'README.rdoc' PROJ.rubyforge.name = 'ffi-inliner' PROJ.ann.paragraphs << 'FEATURES' << 'SYNOPSIS' << 'REQUIREMENTS' << 'DOWNLOAD/INSTALL' << 'CREDITS' PROJ.ann.email[:from] = 'andrea.fazzi@alcacoop.it' PROJ.ann.email[:to] << 'ruby-ffi@googlegroups.com' PROJ.ann.email[:server] = 'smtp.gmail.com' PROJ.spec.opts << '--color' << '-fs' PROJ.ruby_opts = [] depend_on 'ffi', '>=0.4.0' task :default => 'spec' # EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffi-inliner-0.2.4 | Rakefile |
ffi-inliner-0.2.3 | Rakefile |