inline_forms 7.13.14 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 860bfcf4a35bfd76b34b2ac0aa32538370754762e697af0ee5b0da688c4e12b7
4
- data.tar.gz: da3ee422cd4d37c457a8b311bb575b9a7b9e420325af26df5d248c54bc9f5ee5
3
+ metadata.gz: 7025e6c010cc17dfbe6c21dd6d8d9c32a51dd22543553b53accf5b8256144185
4
+ data.tar.gz: 737750dfa689d5a00341bc28bfaf785df8f9a698c8911992f8bc3664a132a8cb
5
5
  SHA512:
6
- metadata.gz: 3113fb740e235c53752446b72557359b579085b4a728d26c6a649c9d9fe9f914debaddbb95904dc476c27c26b0a97525116ca01f4de8950cbcd799a8424088d8
7
- data.tar.gz: 9b5d3eaf4688236a1cef4677412d8e6e0aff2729090a0d5ceb3f17f8fc076f043f0b3503e6d06c71ed1afe7db1ac2a57d487c1d490153d9441df0e2d7fe39e13
6
+ metadata.gz: 55dcbfe60c7e153f5bda7c05f8c57a9e59af16e98543b92fca7d1f0e4ddec2143400ba931379b12a3ef7207f77b77bcce846dfed422ab3cc5912fc386db916b8
7
+ data.tar.gz: 1b1fd306db6e241a077e5349ba4996dfacc2ca1dc7766b6f464c12e983df2235271ddc619f0f87a25819007f602babc811d9d7770f29037d4ad6853982d5fa2a
data/CHANGELOG.md CHANGED
@@ -4,6 +4,19 @@ 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
+
13
+ ## [7.13.15] - 2026-05-21
14
+
15
+ ### Fixed
16
+
17
+ - **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`.
18
+ - **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`.
19
+
7
20
  ## [7.13.14] - 2026-05-21
8
21
 
9
22
  ### Fixed
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module InlineForms
3
- VERSION = "7.13.14"
3
+ VERSION = "7.13.16"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline_forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.13.14
4
+ version: 7.13.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares