good_job 3.12.5 → 3.12.6
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 +4 -4
- data/CHANGELOG.md +13 -0
- data/app/assets/good_job/{modules/application.js → application.js} +4 -0
- data/app/assets/good_job/vendor/chartjs/chart.min.js +15 -9
- data/app/assets/good_job/vendor/rails_ujs.js +7 -747
- data/app/assets/good_job/vendor/stimulus.js +2408 -0
- data/app/controllers/good_job/assets_controller.rb +25 -27
- data/app/views/layouts/good_job/application.html.erb +8 -8
- data/config/routes.rb +2 -12
- data/lib/good_job/adapter.rb +9 -22
- data/lib/good_job/capsule.rb +83 -0
- data/lib/good_job/cli.rb +4 -10
- data/lib/good_job/version.rb +1 -1
- data/lib/good_job.rb +11 -14
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c529a4f3811213bcf4d534c3fc5c096cac64b944db891eedadd5b553ea77aae3
|
|
4
|
+
data.tar.gz: fc88a86278de2dd445e463a84f8a1934bc281c976dc585c7db549e5c57ff97ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5b076dccfa450de8256870ba502c1f65f8c84fcdd9921772176afe04f1ccc57bd65fd215d46cb6a6c3be8c32570d9e271cbd45b73abdc247c64ef593edab64d
|
|
7
|
+
data.tar.gz: c243bf54c98d38fe92fa62f104074582968dc757e65f3df611877307b2068d0126d837450745da60a20a80901b52a27af64302694e117c763d268fa3535ed6e5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v3.12.6](https://github.com/bensheldon/good_job/tree/v3.12.6) (2023-03-01)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.5...v3.12.6)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Update and cleanup js and css assets; add Stimulus [\#870](https://github.com/bensheldon/good_job/pull/870) ([bensheldon](https://github.com/bensheldon))
|
|
10
|
+
- Bump actions/add-to-project from 0.4.0 to 0.4.1 [\#869](https://github.com/bensheldon/good_job/pull/869) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
11
|
+
- Bump actions/checkout from 2 to 3 [\#868](https://github.com/bensheldon/good_job/pull/868) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
12
|
+
- Bump rubocop-rails from 2.17.4 to 2.18.0 [\#867](https://github.com/bensheldon/good_job/pull/867) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
13
|
+
- Bump pg from 1.4.5 to 1.4.6 [\#866](https://github.com/bensheldon/good_job/pull/866) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
14
|
+
- Extract GoodJob::Capsule [\#861](https://github.com/bensheldon/good_job/pull/861) ([bensheldon](https://github.com/bensheldon))
|
|
15
|
+
|
|
3
16
|
## [v3.12.5](https://github.com/bensheldon/good_job/tree/v3.12.5) (2023-02-24)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.4...v3.12.5)
|
|
@@ -7,6 +7,9 @@ import showToasts from "toasts";
|
|
|
7
7
|
import setupPopovers from "popovers";
|
|
8
8
|
import LivePoll from "live_poll";
|
|
9
9
|
|
|
10
|
+
import { Application } from "stimulus";
|
|
11
|
+
window.Stimulus = Application.start();
|
|
12
|
+
|
|
10
13
|
documentReady(function() {
|
|
11
14
|
renderCharts();
|
|
12
15
|
showToasts();
|
|
@@ -16,3 +19,4 @@ documentReady(function() {
|
|
|
16
19
|
const livePoll = new LivePoll
|
|
17
20
|
livePoll.start();
|
|
18
21
|
});
|
|
22
|
+
|