good_job 4.11.0 → 4.11.1

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: 3ea0d288f72729d06fa912bb31fc26fdb95be09488347ae1f2e1de091f9517b3
4
- data.tar.gz: f613ddf4c9eb310f2e7f382309c3084cf283b62681a38c57446a3816855dbe14
3
+ metadata.gz: c69e8c15dd5fb5a07db3dd7bba0c71d9a519dd493c81510cb5ff8ff2cc3aa511
4
+ data.tar.gz: 7d6c2e2b36b732bdef7d1176f9c56c1f2846f9c8eb3f919af80c039cbf5b4fce
5
5
  SHA512:
6
- metadata.gz: 1eb544531de26bf4f483b0b3d19d9f035e198343da429c97ad3db94c604da29d3d5f74c0cdf50a6712e02bf97bbede278ac48dc0c6572b5d6c447d27dd5e2760
7
- data.tar.gz: 8ad6d26f2bf94c545e3630cd3e06f7fc7975943233dd49468358f252c2ad827c6871c65a8cec3bd6f19d430a472a5a84b820d84be17e195e07e6dd3fe5033b45
6
+ metadata.gz: 1a02075581a2d702880e99804db959c67d40d06d946a4392961d635c3b57c484c54755c2fe2cc024e9ca0eac5c9d40a164181dc515e07d6b48672553f907cf75
7
+ data.tar.gz: 19db6c5195211f4fd0c1eda703d4cf6444ae4afcb4cb8b5388e44d9c0fa21ca5007c97c438b8821b8871a304842c4ad536ae8878eb4b29fdf585b08c78a983da
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v4.11.1](https://github.com/bensheldon/good_job/tree/v4.11.1) (2025-06-30)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.11.0...v4.11.1)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add `require rails` to good\_job/engine.rb to allow `bundle console` usage [\#1653](https://github.com/bensheldon/good_job/pull/1653) ([bensheldon](https://github.com/bensheldon))
10
+
3
11
  ## [v4.11.0](https://github.com/bensheldon/good_job/tree/v4.11.0) (2025-06-30)
4
12
 
5
13
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.10.2...v4.11.0)
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "active_support/core_ext/numeric/time"
4
+
3
5
  module GoodJob
4
6
  #
5
7
  # +GoodJob::Configuration+ provides normalized configuration information to
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rails"
4
+ require "good_job"
5
+
3
6
  module GoodJob
4
7
  # Ruby on Rails integration.
5
8
  class Engine < ::Rails::Engine
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GoodJob
4
4
  # GoodJob gem version.
5
- VERSION = '4.11.0'
5
+ VERSION = '4.11.1'
6
6
 
7
7
  # GoodJob version as Gem::Version object
8
8
  GEM_VERSION = Gem::Version.new(VERSION)
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: 4.11.0
4
+ version: 4.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon