-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRakefile
More file actions
21 lines (19 loc) · 758 Bytes
/
Rakefile
File metadata and controls
21 lines (19 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.rubyforge_project = "tilecache"
gemspec.name = "tilecache"
gemspec.summary = "An implementation of TileCache from MetaCarta, written in pure Ruby"
#gemspec.description = "An implementation of TileCache from MetaCarta, written in pure Ruby"
gemspec.email = "pascal.ehlert@odadata.eu"
gemspec.homepage = "http://github.com/pehlert/ruby-tilecache"
gemspec.authors = ["Pascal Ehlert"]
gemspec.files.exclude ".gitignore"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }