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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65c13c8179d4a039cc7172ce9629dbf48caf669065d70509d0af105a4b50e1b4
4
- data.tar.gz: f001bf5e3b7173a5fafceaebf7d9d753e22b64c401faf529efb8ff1ac407d214
3
+ metadata.gz: 7025e6c010cc17dfbe6c21dd6d8d9c32a51dd22543553b53accf5b8256144185
4
+ data.tar.gz: 737750dfa689d5a00341bc28bfaf785df8f9a698c8911992f8bc3664a132a8cb
5
5
  SHA512:
6
- metadata.gz: 5e924389f020db2fd4fa1e426b802bebf8d67cf38e72b7f89c824c0058acfc14b050403d0760044537e721a60a3943932d2d4cf0f95635cb4badee212b226594
7
- data.tar.gz: 1d949af8b76c5f2dac1f3e409377c6747decc2f9a7e54d02b6f5d91f4f7c3c1791458cae7aa3c91dae94e8c1ab4aaae4f46aaf1c67a498df69e5e482ce14ed21
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
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module InlineForms
3
- VERSION = "7.13.15"
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.15
4
+ version: 7.13.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares