resque-lonely_job 1.1.3 → 1.1.4
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 +5 -5
- checksums.yaml.gz.sig +4 -0
- data/CHANGELOG.md +135 -0
- data/LICENSE.md +13 -0
- data/README.md +519 -35
- data/lib/resque/plugins/lonely_job.rb +4 -0
- data/lib/resque-lonely_job/version.rb +9 -1
- data/lib/resque-lonely_job.rb +10 -5
- data.tar.gz.sig +3 -0
- metadata +284 -47
- metadata.gz.sig +0 -0
- data/.gitignore +0 -17
- data/.travis.yml +0 -5
- data/Gemfile +0 -4
- data/LICENSE +0 -22
- data/Rakefile +0 -8
- data/resque-lonely_job.gemspec +0 -42
- data/spec/lib/lonely_job_spec.rb +0 -180
- data/spec/spec_helper.rb +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 20963d6381738059f28d99c8f8c38a87b4317b7374060232181e3d98a03089a9
|
|
4
|
+
data.tar.gz: c99b6389d107ec7339a77fa331cd6d5a1c9d0a892aec141979cccdb011842631
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8cd05e24dc375fdff8149e014e589070bac4cc52a8ee32aeaccefe43c5cba5c175163d2425f6434f58f920f13ea5bcdc05a6aeb2fba7132f6ac867b2364e887e
|
|
7
|
+
data.tar.gz: a6b8937991b9104ee7f47d3abae38f1e397180d97f7e167743edf5306c499a69e8fac99be5d81eb8b68bfe7e39065a3f4b9d30a778fc70004fc187cbe2b67c33
|
checksums.yaml.gz.sig
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2�*��W������z꧐Uy��l��K��(b���x}ˌ"��CG��"��������$�"PN�#��ёil�~��<�3k堀��'��= ����E�A�'�/� b��6mX?�L��J�?^�-V��錖��/a�� �պ��}Cpd[Q���ޮN�鿆��e
|
|
2
|
+
w�F�`!��^yzj�����>��@�8�^ۊ�3�$�V��F���8����Ya#�Bi�#����|�i��tD�/v�ݑ����䐗gw�������vS���"�M�3
|
|
3
|
+
��[.�ץ��1n[��̅y�Ώ6;���&�)�$���'.��$�^΄�ʥ�g<��1��ӹ��nJ�5��42�96��l$��6�
|
|
4
|
+
�P�
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
5
|
+
All notable changes to this project will be documented in this file.
|
|
6
|
+
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
18
|
+
|
|
19
|
+
## [Unreleased]
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [1.1.4] - 2026-08-27
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.4][1.1.4t]
|
|
36
|
+
- COVERAGE: 100.00% -- 41/41 lines in 3 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 8/8 branches in 3 files
|
|
38
|
+
- 40.00% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- kettle-jem-template-20260720-005 - README Support & Community links now
|
|
43
|
+
include RubyForum.
|
|
44
|
+
- kettle-jem-template-20260726-001 - Projects now include YARD lint
|
|
45
|
+
configuration and documentation dependencies so documentation issues fail
|
|
46
|
+
before generated docs are refreshed.
|
|
47
|
+
- kettle-jem-template-20260727-001 - Spec harness documentation now lists the
|
|
48
|
+
RSpec helpers provided by `kettle-test`.
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
|
|
52
|
+
- kettle-jem-template-20260716-002 - Gemspecs now ship fewer repository-only
|
|
53
|
+
files, reducing package noise for downstream packagers.
|
|
54
|
+
- kettle-jem-template-20260720-002 - Development Gemfiles now use the released
|
|
55
|
+
`tree_sitter_language_pack` gem 1.13.3 or newer by default.
|
|
56
|
+
- kettle-jem-template-20260725-002 - Version specs now use `anonymous_loader` to
|
|
57
|
+
cover `version.rb` without redefining constants, or are removed when version
|
|
58
|
+
specs are not managed for the project.
|
|
59
|
+
- kettle-jem-template-20260728-001 - Generated Ruby workflows now use clearer
|
|
60
|
+
setup-ruby-flash planning and can prepare appraisal-only jobs without
|
|
61
|
+
installing the main Gemfile bundle.
|
|
62
|
+
|
|
63
|
+
- Document the gem synopsis and configuration options.
|
|
64
|
+
|
|
65
|
+
- kettle-jem-template-20260801-001 - Generated README gem dashboard links now
|
|
66
|
+
use ClickGems instead of BestGems.
|
|
67
|
+
|
|
68
|
+
- [kc] kettle-jem/prepare: updated 26 project files:
|
|
69
|
+
- dependencies (23)
|
|
70
|
+
- other (3)
|
|
71
|
+
|
|
72
|
+
- [kc] kettle-jem/template: updated 39 project files:
|
|
73
|
+
- configuration (1)
|
|
74
|
+
- dependencies (1)
|
|
75
|
+
- documentation (2)
|
|
76
|
+
- other (5)
|
|
77
|
+
- workflows (30)
|
|
78
|
+
|
|
79
|
+
### Fixed
|
|
80
|
+
|
|
81
|
+
- kettle-jem-template-20260720-003 - StructuredMerge Git diff driver config now
|
|
82
|
+
uses the installed `smorg-rb` driver command.
|
|
83
|
+
- kettle-jem-template-20260725-001 - Release pull request branches beginning
|
|
84
|
+
with `feature/release` now run JRuby and TruffleRuby workflows.
|
|
85
|
+
- kettle-jem-template-20260726-002 - Generated version files now document their
|
|
86
|
+
version namespace and constants, reducing warning-only YARD lint output.
|
|
87
|
+
- kettle-jem-template-20260726-003 - Coverage upload steps now treat Coveralls,
|
|
88
|
+
QLTY, and Codecov as optional, so provider outages do not fail CI when local
|
|
89
|
+
coverage thresholds still pass.
|
|
90
|
+
- kettle-jem-template-20260728-002 - Generated RuboCop configs now ignore the
|
|
91
|
+
same `gemfiles/vendor/bundle` tree as `.gitignore`, so vendored dependency
|
|
92
|
+
installs are not reported as project lint debt.
|
|
93
|
+
- kettle-jem-template-20260728-003 - Generated dep-heads workflows now run
|
|
94
|
+
TruffleRuby jobs with current RubyGems and Bundler, avoiding setup failures
|
|
95
|
+
before the test suite starts.
|
|
96
|
+
- kettle-jem-template-20260728-004 - Generated dep-heads workflows now use the
|
|
97
|
+
setup-ruby Bundler install path for direct appraisal Gemfiles, avoiding rv
|
|
98
|
+
lockfile parser failures on Git and path dependencies.
|
|
99
|
+
- kettle-jem-template-20260728-005 - VersionGem bootstrap now creates the
|
|
100
|
+
missing canonical version spec when a project only has shim namespace version
|
|
101
|
+
specs.
|
|
102
|
+
- kettle-jem-template-20260729-001 - Generated JRuby 9.4 workflows now use the
|
|
103
|
+
legacy manual bundle install path, avoiding setup-time Bundler full-index
|
|
104
|
+
failures against `gem.coop`.
|
|
105
|
+
- kettle-jem-template-20260730-001 - Gemspec package file enumeration now runs
|
|
106
|
+
relative to the gemspec directory, so release package contents stay correct
|
|
107
|
+
even when the gemspec is loaded from another working directory.
|
|
108
|
+
|
|
109
|
+
- Restore legacy top-level RSpec DSL support after templating and correct the requeue default assertion.
|
|
110
|
+
|
|
111
|
+
- kettle-jem-template-20260801-002 - Generated RSpec helpers now normalize
|
|
112
|
+
managed configuration block bindings structurally, preventing mixed block
|
|
113
|
+
parameter names from producing invalid configuration after a merge.
|
|
114
|
+
|
|
115
|
+
- kettle-jem-template-20260801-003 - Generated project metadata and
|
|
116
|
+
documentation now normalize configured underscore hostnames to valid
|
|
117
|
+
hyphenated hostnames.
|
|
118
|
+
- kettle-jem-template-20260801-004 - Generated organization README logos now
|
|
119
|
+
use GitHub's stable organization avatar endpoint instead of assuming a
|
|
120
|
+
matching Galtzo-hosted asset exists.
|
|
121
|
+
|
|
122
|
+
- Remove templating-generated duplicate version loading and unused alternate entrypoint files.
|
|
123
|
+
|
|
124
|
+
- Restore the documented resque/plugins/lonely_job compatibility require path.
|
|
125
|
+
|
|
126
|
+
- Restore automatic VersionGem entrypoint management for the supported Ruby runtime.
|
|
127
|
+
|
|
128
|
+
- kettle-jem-template-20260802-001 - Devcontainer JSON files now merge as JSONC,
|
|
129
|
+
preserving comments and trailing commas during template updates.
|
|
130
|
+
|
|
131
|
+
- Generated gemspec author metadata now includes all non-machine copyright holders.
|
|
132
|
+
|
|
133
|
+
[Unreleased]: https://github.com/resque/resque-lonely_job/compare/v1.1.4...HEAD
|
|
134
|
+
[1.1.4]: https://github.com/resque/resque-lonely_job/compare/6f784fa7dd7863db4d6169ae7f9519880c1ccb41...v1.1.4
|
|
135
|
+
[1.1.4t]: https://github.com/resque/resque-lonely_job/releases/tag/v1.1.4
|
data/LICENSE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
This project is made available under the following license.
|
|
4
|
+
Choose the option that best fits your use case:
|
|
5
|
+
|
|
6
|
+
- [MIT](https://github.com/resque/resque-lonely_job/blob/main/MIT.md)
|
|
7
|
+
|
|
8
|
+
## Copyright Notice
|
|
9
|
+
|
|
10
|
+
- Copyright (c) 2012-2014 Jonathan R. Wallace
|
|
11
|
+
- Copyright (c) 2013 Tatsuhiko Miyagawa
|
|
12
|
+
- Copyright (c) 2014 Lance Woodson
|
|
13
|
+
- Copyright (c) 2025-2026 Peter H. Boling
|