delayed_job_on_steroids 1.7.4 → 1.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/delayed_job_on_steroids.gemspec +1 -1
- data/spec/job_spec.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.7.
|
1
|
+
1.7.5
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{delayed_job_on_steroids}
|
8
|
-
s.version = "1.7.
|
8
|
+
s.version = "1.7.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Tobias L\303\274tke", "Aleksey Palazhchenko"]
|
data/spec/job_spec.rb
CHANGED
@@ -382,7 +382,7 @@ describe Delayed::Job do
|
|
382
382
|
context "db_time_now" do
|
383
383
|
it "should return time in current time zone if set" do
|
384
384
|
Time.zone = 'Eastern Time (US & Canada)'
|
385
|
-
Delayed::Job.db_time_now.zone.should
|
385
|
+
Delayed::Job.db_time_now.zone.should match /EST|EDT/
|
386
386
|
end
|
387
387
|
|
388
388
|
it "should return UTC time if that is the AR default" do
|