Skip to content

Commit 1e4af84

Browse files
depfu[bot]mockdeep
authored andcommitted
Update good_job to version 4.8.2
1 parent 55d8b91 commit 1e4af84

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ EXPOSE 8080
1010
SHELL ["/bin/bash", "-c"]
1111

1212
WORKDIR /app
13-
ADD Gemfile Gemfile.lock /app/
14-
RUN gem install bundler:$BUNDLER_VERSION && bundle install
15-
1613
RUN apt-get update \
1714
&& apt-get install -y --no-install-recommends \
1815
supervisor locales nodejs vim nano \
19-
&& apt-get clean \
16+
&& apt-get clean build-essential \
2017
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2118

19+
ADD Gemfile Gemfile.lock /app/
20+
RUN gem install bundler:$BUNDLER_VERSION && bundle install
21+
2222
RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales \
2323
&& locale-gen C.UTF-8 \
2424
&& /usr/sbin/update-locale LANG=C.UTF-8

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ gem "bcrypt"
1313
gem "bootsnap", require: false
1414
gem "feedbag"
1515
gem "feedjira"
16-
gem "good_job", "~> 4.7.0"
16+
gem "good_job", "~> 4.8.2"
1717
gem "httparty"
1818
gem "nokogiri", "~> 1.18.0"
1919
gem "pg"

Gemfile.lock

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ GEM
152152
raabro (~> 1.4)
153153
globalid (1.2.1)
154154
activesupport (>= 6.1)
155-
good_job (4.7.0)
155+
good_job (4.8.2)
156156
activejob (>= 6.1.0)
157157
activerecord (>= 6.1.0)
158158
concurrent-ruby (>= 1.3.1)
@@ -168,7 +168,8 @@ GEM
168168
concurrent-ruby (~> 1.0)
169169
ice_nine (0.11.2)
170170
io-console (0.8.0)
171-
irb (1.14.3)
171+
irb (1.15.1)
172+
pp (>= 0.6.0)
172173
rdoc (>= 4.0.0)
173174
reline (>= 0.4.2)
174175
json (2.9.1)
@@ -210,6 +211,9 @@ GEM
210211
ast (~> 2.4.1)
211212
racc
212213
pg (1.5.9)
214+
pp (0.6.2)
215+
prettyprint
216+
prettyprint (0.2.0)
213217
pry (0.14.2)
214218
coderay (~> 1.1)
215219
method_source (~> 1.0)
@@ -413,7 +417,7 @@ DEPENDENCIES
413417
factory_bot
414418
feedbag
415419
feedjira
416-
good_job (~> 4.7.0)
420+
good_job (~> 4.8.2)
417421
httparty
418422
nokogiri (~> 1.18.0)
419423
pg

spec/requests/debug_controller_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def setup
3636

3737
it "displays the jobs count" do
3838
setup
39-
12.times { GoodJob::Job.create! }
39+
12.times { GoodJob::Job.create!(scheduled_at: Time.zone.now) }
4040

4141
get "/admin/debug"
4242

0 commit comments

Comments
 (0)