-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathresque-heroku-autoscaler.gemspec
24 lines (20 loc) · 1.03 KB
/
resque-heroku-autoscaler.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
$LOAD_PATH.unshift 'lib'
require 'resque/plugins/heroku_autoscaler/version'
Gem::Specification.new do |s|
s.name = "resque-heroku-autoscaler"
s.date = Time.now.strftime('%Y-%m-%d')
s.version = Resque::Plugins::HerokuAutoscaler::VERSION
s.summary = "Resque plugin to autoscale your workers on Heroku"
s.homepage = "https://github.com/ajmurmann/resque-heroku-autoscaler"
s.authors = ["Alexander Murmann"]
s.email = "[email protected]"
s.files = %w( README.md MIT.LICENSE Gemfile )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("spec/**/*")
s.add_dependency "resque", ">= 1.8"
s.add_dependency "heroku-api"
s.add_dependency "activesupport"
s.description = <<desc
This gem scales your Heroku workers according to the number of pending Resque jobs. You can customize the scaling behavior of your workers, however you like.
desc
end