-
Notifications
You must be signed in to change notification settings - Fork 20
/
Rakefile
29 lines (26 loc) · 840 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rrobots"
gem.summary = "gemified version of rrobots"
gem.description = "gemified version of rrobots"
gem.email = "jasonedwardjones@gmail.com"
gem.homepage = "http://github.com/ralreegorganon/rrobots"
gem.authors = ["Jason Jones"]
gem.executables = ["rrobots", "tournament"]
gem.add_dependency "gosu"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "rrobots #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end