forked from lostboy/workless
-
Notifications
You must be signed in to change notification settings - Fork 4
/
workless.gemspec
37 lines (28 loc) · 1.19 KB
/
workless.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
# frozen_string_literal: true
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'workless'
s.version = '2.2.0'
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
s.authors = ['davidakachaos', 'lostboy']
s.date = '2017-10-10'
s.description = 'Extension to Delayed Job to enable workers to scale up when needed'
s.email = '[email protected]'
s.files = Dir.glob('{rails,lib}/**/*') + %w(LICENSE README.md )
s.homepage = 'http://github.com/lostboy/workless'
s.require_paths = ['lib']
s.summary = 'Use delayed job workers only when theyre needed on Heroku'
s.add_runtime_dependency('rails')
s.add_runtime_dependency('platform-api')
s.add_runtime_dependency('rush')
s.add_runtime_dependency('delayed_job', ['>= 2.0.7'])
s.required_ruby_version = '>= 2.2.4'
s.add_development_dependency('rspec')
s.post_install_message = %q{
Workless 2.2.0 introduces a backwards-incompatible change!
Please update your Heroku config to use WORKLESS_API_KEY instead of HEROKU_API_KEY!!
}
end