inline_forms 7.13.15 → 7.13.16
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 +6 -0
- data/lib/inline_forms/version.rb +1 -1
- 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: 7025e6c010cc17dfbe6c21dd6d8d9c32a51dd22543553b53accf5b8256144185
|
|
4
|
+
data.tar.gz: 737750dfa689d5a00341bc28bfaf785df8f9a698c8911992f8bc3664a132a8cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55dcbfe60c7e153f5bda7c05f8c57a9e59af16e98543b92fca7d1f0e4ddec2143400ba931379b12a3ef7207f77b77bcce846dfed422ab3cc5912fc386db916b8
|
|
7
|
+
data.tar.gz: 1b1fd306db6e241a077e5349ba4996dfacc2ca1dc7766b6f464c12e983df2235271ddc619f0f87a25819007f602babc811d9d7770f29037d4ad6853982d5fa2a
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [7.13.16] - 2026-05-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **`inline_forms create` gemset switch (real fix):** in 7.13.15 the helper bailed via `defined?(RVM) && RVM.current` *before* `require "rvm"`, so inside the `rails new` subprocess (which had not loaded the rvm gem) it always returned without switching. Now require rvm first; if the gem is unavailable, log and skip; otherwise switch via `RVM.use_from_path! "."` after `.ruby-gemset` is written. Result: `bundle install`, the example tests, and the post-create `bundle check` all run inside the app's gemset (`@MyApp` for `inline_forms create MyApp`), and `cd MyApp && rails s` no longer reports missing gems.
|
|
12
|
+
|
|
7
13
|
## [7.13.15] - 2026-05-21
|
|
8
14
|
|
|
9
15
|
### Fixed
|
data/lib/inline_forms/version.rb
CHANGED