Sha256: e81d9048d6707eb4bec40d187561501daff441ce5faa03b6a359b259dd68c1c3

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 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'

PROJ.ann.paragraphs << 'FEATURES' << 'SYNOPSIS' << 'REQUIREMENTS' << 'DOWNLOAD/INSTALL' << 'CREDITS'
PROJ.ann.email[:from] = 'andrea.fazzi@alcacoop.it'
PROJ.ann.email[:to] << 'dev@ruby-ffi.kenai.com' << 'users@ruby-ffi.kenai.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

1 entries across 1 versions & 1 rubygems

Version Path
ffi-inliner-0.2.2 Rakefile