File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Generated by jeweler
4+ # DO NOT EDIT THIS FILE DIRECTLY
5+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
6+ # -*- encoding: utf-8 -*-
7+
8+ Gem ::Specification . new do |s |
9+ s . name = 'workless'
10+ s . version = '2.2.0'
11+
12+ s . required_rubygems_version = Gem ::Requirement . new ( '>= 1.3.6' ) if s . respond_to? :required_rubygems_version=
13+ s . authors = [ 'davidakachaos' , 'lostboy' ]
14+ s . date = '2017-10-10'
15+ s . description = 'Extension to Delayed Job to enable workers to scale up when needed'
16+ 17+
18+ s . files = Dir . glob ( '{rails,lib}/**/*' ) + %w( LICENSE README.md )
19+
20+ s . homepage = 'http://github.com/lostboy/workless'
21+ s . require_paths = [ 'lib' ]
22+ s . summary = 'Use delayed job workers only when theyre needed on Heroku'
23+
24+ s . add_runtime_dependency ( 'rails' )
25+ s . add_runtime_dependency ( 'platform-api' )
26+ s . add_runtime_dependency ( 'rush' )
27+ s . add_runtime_dependency ( 'delayed_job' , [ '>= 2.0.7' ] )
28+
29+ s . required_ruby_version = '>= 2.2.4'
30+
31+ s . add_development_dependency ( 'rspec' )
32+
33+ s . post_install_message = %q{
34+ Workless 2.2.0 introduces a backwards-incompatible change!
35+ Please update your Heroku config to use WORKLESS_API_KEY instead of HEROKU_API_KEY!!
36+ }
37+ end
You can’t perform that action at this time.
0 commit comments