recourse 4.1.0 → 4.1.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/recourse/version.rb +1 -1
- data/lib/recourse.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 885100a9b5833d1289d8ba81f76597998877e0ed8e20af3ccab244633f37b670
|
|
4
|
+
data.tar.gz: 765bbf53ac34ad8982ddc375835276d076c31cd9123812db74d2a470af5d108e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 920b95da84fd1d6c543974ff6febc7c8112c18bfa56e6599a2db3f71a33c456484c5076b7da4b608ee74a0baabe78c38f887667af9a1f0b8ae91544e9162ef39
|
|
7
|
+
data.tar.gz: 49302a53b680b953be0b24892453dd465c9ef4d5681a4d0a05e70f1a52d24fea13ceffb91110496ca40a7f943db571c6f4e83d58696fe4e22dffa9c7506af0d8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
For more information about changelogs, check [Keep a Changelog](http://keepachangelog.com) and
|
|
6
6
|
[Vandamme](http://tech-angels.github.io/vandamme).
|
|
7
7
|
|
|
8
|
+
## 4.1.1 - 2026-09-08
|
|
9
|
+
|
|
10
|
+
* [Fix] The engine requires turbo-rails itself
|
|
11
|
+
|
|
12
|
+
Bundler requires the gems a host's Gemfile names and not their dependencies, so a
|
|
13
|
+
host listing only `recourse` booted into `uninitialized constant Turbo`.
|
|
14
|
+
|
|
8
15
|
## 4.1.0 - 2026-09-08
|
|
9
16
|
|
|
10
17
|
* [Feature] Rows with nothing in the sorted column come last
|
data/lib/recourse/version.rb
CHANGED
data/lib/recourse.rb
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
require 'pagy'
|
|
2
2
|
# Before searchable.rb, so its `extend` lands ahead of Ransack's own defaults.
|
|
3
3
|
require 'ransack'
|
|
4
|
+
# The engine serves Turbo's own bundle, and a host's Gemfile need not name the gem.
|
|
5
|
+
require 'turbo-rails'
|
|
4
6
|
require 'unicon'
|
|
5
7
|
|
|
6
8
|
require_relative 'recourse/version'
|