good_job 2.12.1 → 2.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53c32b60d9ee966dd7dcb05f5add8f3ab7bcd666a224019d91b0e07e54a366b4
4
- data.tar.gz: 7abcb16ceb51272d9fc6297491c55500b97a2839c6158c24d9779841b179c721
3
+ metadata.gz: 8d56e35eff62e8575f9096bcbc763978c0803d675232bf7aa939a0603434f6c6
4
+ data.tar.gz: aec46224383849afe2b9ba93d245f70674f4af85765bfd804bb23f528229fd6d
5
5
  SHA512:
6
- metadata.gz: a65fc3d71709b9c4ee611f79e3678b9ef910d8480757037fd25f83f9d783eff40134b0b15fad873d31fb60c576872a93fd64bc2c7f0f2ba9b4ce0d751984925c
7
- data.tar.gz: eea513879d7cdbb872938469a62672d886156a92f63a61c88e8a62c816a218bc325be1b705d1e1f7f7a43626ba2910bd108ea14303b6a15b59674a85eddf1f58
6
+ metadata.gz: 1f6d42db1f03b01f19eef705ff88acff1a93d5f1802df2c6240109c2178fe39f68733b3648799ebe186375166c39ec1fe04388c4fe61d06708d52c520023e685
7
+ data.tar.gz: 2b64a3237f6f77d3e1a890e040aa20daf48efc92c461960e0a005f27d734a3639b0a0a10cdc0b4793ec962bac0c68a988ddc89779a83e10210e977c901a30cd1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [v2.12.2](https://github.com/bensheldon/good_job/tree/v2.12.2) (2022-04-18)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.12.1...v2.12.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Dashboard: added NL translations [\#568](https://github.com/bensheldon/good_job/pull/568) ([eelcoj](https://github.com/eelcoj))
10
+ - Un-deprecate Adapter's `execution_mode` argument [\#567](https://github.com/bensheldon/good_job/pull/567) ([bensheldon](https://github.com/bensheldon))
11
+
3
12
  ## [v2.12.1](https://github.com/bensheldon/good_job/tree/v2.12.1) (2022-04-18)
4
13
 
5
14
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.12.0...v2.12.1)
@@ -0,0 +1,53 @@
1
+ ---
2
+ nl:
3
+ datetime:
4
+ distance_in_words:
5
+ about_x_hours:
6
+ one: ongeveer 1 uur
7
+ other: ongeveer %{count} uren
8
+ about_x_months:
9
+ one: ongeveer 1 maand
10
+ other: ongeveer %{count} maanden
11
+ about_x_years:
12
+ one: ongeveer 1 jaar
13
+ other: ongeveer %{count} jaren
14
+ almost_x_years:
15
+ one: bijna 1 jaar
16
+ other: bijna %{count} jaren
17
+ half_a_minute: halve minuut
18
+ less_than_x_minutes:
19
+ one: minder dan één minuut
20
+ other: minder dan %{count} minuten
21
+ less_than_x_seconds:
22
+ one: minder dan 1 seconde
23
+ other: minder dan %{count} seconden
24
+ over_x_years:
25
+ one: meer dan 1 jaar
26
+ other: meer dan %{count} jaren
27
+ x_days:
28
+ one: 1 dag
29
+ other: "%{count} dagen"
30
+ x_minutes:
31
+ one: 1 minuut
32
+ other: "%{count} minuten"
33
+ x_months:
34
+ one: 1 maand
35
+ other: "%{count} maanden"
36
+ x_seconds:
37
+ one: 1 seconde
38
+ other: "%{count} seconden"
39
+ x_years:
40
+ one: 1 jaar
41
+ other: "%{count} jaren"
42
+ good_job:
43
+ shared:
44
+ footer:
45
+ last_update_html: Laatst bijgewerkt <time id="page-updated-at" datetime="%{time}">%{time}</time>
46
+ wording: 'Onthoud: jij levert ook goed werk!'
47
+ navbar:
48
+ cron_schedules: Cron Schema
49
+ executions: Alle Uitvoeringen
50
+ jobs: Alle Taken
51
+ live_poll: Live Poll
52
+ name: "GoodJob 👍"
53
+ processes: Processen
File without changes
@@ -28,9 +28,9 @@ module GoodJob
28
28
  # @param poll_interval [Integer, nil] sets the number of seconds between polls for jobs when +execution_mode+ is set to +:async+. You can also set this with the environment variable +GOOD_JOB_POLL_INTERVAL+. Defaults to +1+.
29
29
  # @param start_async_on_initialize [Boolean] whether to start the async scheduler when the adapter is initialized.
30
30
  def initialize(execution_mode: nil, queues: nil, max_threads: nil, poll_interval: nil, start_async_on_initialize: nil)
31
- if execution_mode || queues || max_threads || poll_interval || start_async_on_initialize
31
+ if queues || max_threads || poll_interval || start_async_on_initialize
32
32
  ActiveSupport::Deprecation.warn(
33
- "The GoodJob::Adapter's initialization parameters have been deprecated and will be removed in GoodJob v3. These options should be configured through GoodJob global configuration instead."
33
+ "GoodJob::Adapter's execution-related arguments (queues, max_threads, poll_interval, start_async_on_initialize) have been deprecated and will be removed in GoodJob v3. These options should be configured through GoodJob global configuration instead."
34
34
  )
35
35
  end
36
36
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module GoodJob
3
3
  # GoodJob gem version.
4
- VERSION = '2.12.1'
4
+ VERSION = '2.12.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: good_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.12.1
4
+ version: 2.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon
@@ -400,7 +400,8 @@ files:
400
400
  - engine/app/views/layouts/good_job/application.html.erb
401
401
  - engine/config/locales/en.yml
402
402
  - engine/config/locales/es.yml
403
- - engine/config/locales/ru.yaml
403
+ - engine/config/locales/nl.yml
404
+ - engine/config/locales/ru.yml
404
405
  - engine/config/routes.rb
405
406
  - engine/lib/good_job/engine.rb
406
407
  - exe/good_job