inline_forms 7.13.11 → 7.13.12
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 -3
- 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: 3acec95607776e567399ffef5a77c6701f6b442818d2288f3064ec4d68bb91e6
|
|
4
|
+
data.tar.gz: 504439f061bfc674fd7736f289f82b3216aaff00eaf563eb86a021e70c63e6ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0960256de3944fd0286eb710885a5c6289ecbb68d4397a866828ae412e3e601419610cf2b6e194c0a37cd6aa4562519ed0f6a55bb69aea65d9d4e2c7957f2354'
|
|
7
|
+
data.tar.gz: 5927089981d365d1a58ad907af910810da94180e3fb2ff5de51c093c3a254c3f0dd67f284b8f900a7114b35e9ba5b4d369bf9aca9d458335a38a999848304eff
|
data/CHANGELOG.md
CHANGED
|
@@ -4,17 +4,21 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [7.13.12] - 2026-05-20
|
|
8
|
+
|
|
7
9
|
### Changed
|
|
8
10
|
|
|
9
|
-
- **`
|
|
10
|
-
-
|
|
11
|
+
- **`InlineForms::VERSION`** and **`InlineFormsInstaller::VERSION`** → **7.13.12** (three-gem lockstep with **validation_hints**).
|
|
12
|
+
- **`installer_core.rb`:** `bundle_install!` runs `bundle install` + `bundle check` and **aborts** app generation if either fails (avoids a finished `MyApp` with `Gemfile.lock` but missing `inline_forms` / `validation_hints` in the RVM gemset).
|
|
13
|
+
- **`InlineFormsInstaller::Creator`:** prints `rvm use .`, `bundle install`, and `bundle exec rails test` after a successful create.
|
|
11
14
|
|
|
12
15
|
## [7.13.11] - 2026-05-20
|
|
13
16
|
|
|
14
17
|
### Changed
|
|
15
18
|
|
|
16
19
|
- **`InlineForms::VERSION`** and **`InlineFormsInstaller::VERSION`** → **7.13.11** (three-gem lockstep with **validation_hints**).
|
|
17
|
-
- **`rake install:local`:**
|
|
20
|
+
- **`rake install:local`:** optional task to `gem install` built gems from `pkg/`.
|
|
21
|
+
- **`rake release:all`:** build + tag + RubyGems push only (no MyApp, no `install:local`).
|
|
18
22
|
|
|
19
23
|
## [7.13.10] - 2026-05-20
|
|
20
24
|
|
data/lib/inline_forms/version.rb
CHANGED