inline_forms 7.13.13 → 7.13.15
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 +19 -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: 65c13c8179d4a039cc7172ce9629dbf48caf669065d70509d0af105a4b50e1b4
|
|
4
|
+
data.tar.gz: f001bf5e3b7173a5fafceaebf7d9d753e22b64c401faf529efb8ff1ac407d214
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e924389f020db2fd4fa1e426b802bebf8d67cf38e72b7f89c824c0058acfc14b050403d0760044537e721a60a3943932d2d4cf0f95635cb4badee212b226594
|
|
7
|
+
data.tar.gz: 1d949af8b76c5f2dac1f3e409377c6747decc2f9a7e54d02b6f5d91f4f7c3c1791458cae7aa3c91dae94e8c1ab4aaae4f46aaf1c67a498df69e5e482ce14ed21
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [7.13.15] - 2026-05-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **RVM gemset during `inline_forms create`:** switch to `@MyApp` (or app name) only after `.ruby-gemset` exists, so `bundle install` and example tests install gems into the app gemset—not plain `ruby-4.0.4`.
|
|
12
|
+
- **Install summary `bundle check`:** run with `rvm use .` from the app directory so it reflects the app gemset, not the CLI gemset used to run `inline_forms create`.
|
|
13
|
+
|
|
14
|
+
## [7.13.14] - 2026-05-21
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Install log:** header (`Install log: …` at top), test output (`tee -a`), and closing summary are all written into `MyApp/log/inline_forms_create-*.log` (not only on the terminal).
|
|
19
|
+
- **`--example` test summary:** read from the install log after create (ENV set inside `rails new` did not reach the Creator parent process).
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **`InlineForms::VERSION`** and **`InlineFormsInstaller::VERSION`** → **7.13.14** (lockstep with **validation_hints**).
|
|
24
|
+
- **Gemfile header:** records `inline_forms_installer` version, not the resolved `inline_forms` engine version.
|
|
25
|
+
|
|
7
26
|
## [7.13.13] - 2026-05-21
|
|
8
27
|
|
|
9
28
|
### Added
|
data/lib/inline_forms/version.rb
CHANGED