-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathheroku-rails.gemspec
37 lines (32 loc) · 1.09 KB
/
heroku-rails.gemspec
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
30
31
32
33
34
35
36
37
Gem::Specification.new do |s|
s.name = "heroku-rails"
s.version = "0.4.4"
s.authors = ["Elijah Miller", "Glenn Roberts", "Jacques Crocker"]
s.summary = "Deployment and configuration tools for Heroku/Rails"
s.description = "Manage multiple Heroku instances/apps for a single Rails app using Rake. It's the Capistrano for Heroku, without the suck."
s.email = "[email protected]"
s.homepage = "http://github.com/railsjedi/heroku-rails"
s.rubyforge_project = "none"
s.require_paths = ["lib"]
s.files = Dir['lib/**/*',
'spec/**/*',
'heroku-rails.gemspec',
'Gemfile',
'Gemfile.lock',
'CHANGELOG',
'LICENSE',
'Rakefile',
'README.md',
'TODO']
s.test_files = Dir['spec/**/*']
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = [
"LICENSE",
"README.md",
"TODO",
"CHANGELOG"
]
s.add_runtime_dependency "heroku", ">= 2.15.0"
s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency "rake", "~> 0.9.2"
end