Skip to content

Commit

Permalink
Preparing for 1.9.11 release
Browse files Browse the repository at this point in the history
including backport of `require_paths` fix and runtime dependency
updates.
  • Loading branch information
meatballhat committed Nov 20, 2013
1 parent 5d5337c commit c80c5af
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.9.11 (2013-11-20)

* Fixed behavior of `#validate_job!` via `#enqueue_at_with_queue` #286
* Correcting `require_paths` in gemspec #288

## 1.9.10 (2013-09-19)

* Backported `#enqueue_at_with_queue`
Expand Down
2 changes: 1 addition & 1 deletion lib/resque_scheduler/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ResqueScheduler
VERSION = '1.9.10'
VERSION = '1.9.11'
end
16 changes: 8 additions & 8 deletions resque-scheduler.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-
# vim:fileencoding=utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'resque_scheduler/version'
Expand All @@ -14,10 +14,10 @@ Gem::Specification.new do |spec|
Adds methods enqueue_at/enqueue_in to schedule jobs in the future.
Also supports queueing jobs on a fixed, cron-like schedule.}

spec.files = `git ls-files`.split("\n")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^test/})
spec.require_path = ['lib']
spec.files = `git ls-files`.split("\n")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^test/})
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'mocha'
Expand All @@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'json' if RUBY_VERSION < '1.9'
spec.add_development_dependency 'rubocop' unless RUBY_VERSION < '1.9'

spec.add_runtime_dependency 'redis', '>= 2.0.1'
spec.add_runtime_dependency 'resque', ['>= 1.8.0', '< 1.25.0']
spec.add_runtime_dependency 'rufus-scheduler', ['>= 0', '< 3.0']
spec.add_runtime_dependency 'redis', '~> 3.0'
spec.add_runtime_dependency 'resque', ['>= 1.8.0', '< 1.25']
spec.add_runtime_dependency 'rufus-scheduler', '~> 2.0'
end

0 comments on commit c80c5af

Please sign in to comment.