Sha256: ade31f065b0bf00dccc7a752a7371651aa5637966258d3193e6fe004640ab1b5

Contents?: true

Size: 608 Bytes

Versions: 2

Compression:

Stored size: 608 Bytes

Contents

# -*- ruby -*-

require "rubygems"
require "hoe"

Hoe.plugin :isolate
Hoe.plugin :minitest, :history, :email # Hoe.plugin :seattlerb - :perforce
Hoe.plugin :rdoc
Hoe.plugin :git
Hoe.plugin :compiler

Hoe.spec "graphics" do
  developer "Ryan Davis", "ryand-ruby@zenspider.com"

  extension :sdl

  license "MIT"

  dependency "rsdl", "~> 0.1"

  base = "/data/www/docs.seattlerb.org"
  rdoc_locations << "docs-push.seattlerb.org:#{base}/#{remote_rdoc_dir}"
end

task :demos => :compile do
  Dir["examples/*.rb"].each do |script|
    puts script
    system "rsdl -Ilib #{script}"
  end
end

# vim: syntax=ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
graphics-1.0.0b5 Rakefile
graphics-1.0.0b4 Rakefile