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 CHANGED
@@ -1 +1 @@
1
- 1.7.4
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.4"
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 == 'EST'
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
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 7
8
- - 4
9
- version: 1.7.4
8
+ - 5
9
+ version: 1.7.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Tobias L\xC3\xBCtke"