forked from jqr/heroku_san
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
22 lines (20 loc) · 794 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "heroku_san"
gem.summary = %Q{A bunch of useful Rake tasks for managing your Heroku apps}
gem.description = %Q{Manage multiple Heroku instances/apps for a single Rails app using Rake}
gem.email = "[email protected]"
gem.homepage = "http://github.com/glennr/heroku_san"
gem.authors = ["Elijah Miller", "Glenn Roberts"]
gem.files = Dir["{lib}/**/*", "VERSION", "LICENSE", "CHANGELOG", "TODO", "README.rdoc", "Rakefile"]
gem.extra_rdoc_files = []
gem.add_dependency("heroku")
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
desc 'Default: build gem.'
task :default => :build