-
Notifications
You must be signed in to change notification settings - Fork 1
/
heroscale.gemspec
36 lines (28 loc) · 927 Bytes
/
heroscale.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
Gem::Specification.new do |s|
s.name = "heroscale"
s.version = "0.1.1"
s.authors = ["Jacques Crocker"]
s.summary = "Autoscale your heroku app"
s.description = "Rack middleware that allows easy external querying of your heroku's app queue depth"
s.email = "[email protected]"
s.homepage = "http://github.com/railsjedi/heroscale"
s.rubyforge_project = "none"
s.require_paths = ["lib"]
s.files = Dir['lib/**/*',
'spec/**/*',
'heroscale.gemspec',
'Gemfile',
'Gemfile.lock',
'LICENSE',
'Rakefile',
'README.md']
s.test_files = Dir['spec/**/*']
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.add_development_dependency "json"
s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency 'rake', '~> 0.8.7'
end