-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (23 loc) · 743 Bytes
/
Rakefile
File metadata and controls
24 lines (23 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "graster"
s.description = s.summary = "G Raster!"
s.email = "joshbuddy@gmail.com"
s.homepage = "http://github.com/joshbuddy/graster"
s.authors = ["Jedediah Smith", "Joshua Hull"]
s.files = FileList["[A-Z]*", "{lib,bin}/**/*"]
s.add_dependency 'rmagick'
s.rubyforge_project = 'graster'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
require 'rake/rdoctask'
desc "Generate documentation"
Rake::RDocTask.new do |rd|
rd.main = "README.rdoc"
rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
rd.rdoc_dir = 'rdoc'
end