Sha256: f74165c1860c859406f2d14b96c9ba1341ed08fb09f60c00e136a2a638844d70

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

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.

begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end

ensure_in_path 'lib'
require 'ffi-opengl'

task :default => 'spec:run'

PROJ.name = 'ffi-opengl'
PROJ.authors = 'Andrea Fazzi'
PROJ.email = 'andrea.fazzi@alcacoop.it'
PROJ.url = 'http://github.com/remogatto/ffi-opengl'
PROJ.version = '0.2.1'
PROJ.rubyforge.name = 'ffi-opengl'

PROJ.readme_file = 'README.rdoc'

PROJ.ann.paragraphs << 'FEATURES/PROBLEMS' << 'SYNOPSIS' << 'REQUIREMENTS' << 'DOWNLOAD/INSTALL' << 'LINKS'
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'
PROJ.ruby_opts = []

depend_on 'ffi', '0.3.0'

# EOF

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
remogatto-ffi-opengl-0.2.1 Rakefile
ffi-opengl-0.2.1 Rakefile