Skip to content

Commit

Permalink
Expand the Active Support version requirement to include 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
laserlemon committed May 26, 2017
1 parent 8e41fc3 commit 7bb7a96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -29,8 +29,8 @@ group :test do
gem 'actionmailer', :github => 'rails/rails'
gem 'activerecord', :github => 'rails/rails'
else
gem 'actionmailer', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.1'])
gem 'activerecord', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.1'])
gem 'actionmailer', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.2'])
gem 'activerecord', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.2'])
end

gem 'coveralls', :require => false
Expand Down
2 changes: 1 addition & 1 deletion delayed_job.gemspec
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |spec|
spec.add_dependency 'activesupport', ['>= 3.0', '< 5.1']
spec.add_dependency 'activesupport', ['>= 3.0', '< 5.2']
spec.authors = ['Brandon Keepers', 'Brian Ryckbost', 'Chris Gaffney', 'David Genord II', 'Erik Michaels-Ober', 'Matt Griffin', 'Steve Richert', 'Tobias Lütke']
spec.description = 'Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks.'
spec.email = ['brian@collectiveidea.com']
Expand Down

0 comments on commit 7bb7a96

Please sign in to comment.