├── .travis.yml ├── Gemfile ├── HISTORY.md ├── MIT.LICENSE ├── README.md ├── Rakefile ├── lib └── resque │ └── plugins │ ├── heroku_autoscaler │ ├── config.rb │ └── version.rb │ └── resque_heroku_autoscaler.rb ├── resque-heroku-autoscaler.gemspec └── spec ├── config_spec.rb ├── resque_heroku_autoscaler_spec.rb └── spec_helper.rb /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/HISTORY.md -------------------------------------------------------------------------------- /MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/MIT.LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/resque/plugins/heroku_autoscaler/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/lib/resque/plugins/heroku_autoscaler/config.rb -------------------------------------------------------------------------------- /lib/resque/plugins/heroku_autoscaler/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/lib/resque/plugins/heroku_autoscaler/version.rb -------------------------------------------------------------------------------- /lib/resque/plugins/resque_heroku_autoscaler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/lib/resque/plugins/resque_heroku_autoscaler.rb -------------------------------------------------------------------------------- /resque-heroku-autoscaler.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/resque-heroku-autoscaler.gemspec -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/resque_heroku_autoscaler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/spec/resque_heroku_autoscaler_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajmurmann/resque-heroku-autoscaler/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------