inline_forms 7.13.8 → 7.13.10

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: d3b2fa6061d683fe127827b1cb382621af92b8063b61eca29998c06422feda4c
4
- data.tar.gz: 298837a9010e3265adf7e0887828e813e8c7596b617e719f2f6c6e0b1fdf344f
3
+ metadata.gz: 48ebe5de01d741a0cbde8bb38d99e621b9980e2520ee054f37030ec2b5e720fe
4
+ data.tar.gz: ee42597d9d900e1b00aec6c444d686bbb3f59c81c8b7bc2bc6c23ad351511d85
5
5
  SHA512:
6
- metadata.gz: 8e08926a15fe6d6b9385757191b1ba21eb7dedd089247926e54302e81ac3da31fc05acd97f9e7706056b5b6abbca87aeb988528eb1f95bee37775f57df5e85a8
7
- data.tar.gz: b810adc34432956a4cf43ca7c59dc6994cda0d59299ef84d3e8a333397ac642eade0cbf28e2097fec69cb3f2c63e5aafed8052e3865f8d6138c7be3f5796d0ff
6
+ metadata.gz: 751560c0fe2a7a5e7ca1a8e6bd7816fc73d5483b30f4a17237f9b2359b565ae27e5095d595cd40a20873a34184d18750552c8c5d80ee361f352ef11b962b2e54
7
+ data.tar.gz: '018b81cbe7a80ae3e00e20789f872a839d847d618a903628757e46ec53804621b1dd82426c965595bbdab835e09883053b179fbad5d6d16b038b9f736d6be174'
data/CHANGELOG.md CHANGED
@@ -4,6 +4,26 @@ All notable changes to this project are documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [7.13.10] - 2026-05-20
8
+
9
+ ### Changed
10
+
11
+ - **`InlineForms::VERSION`** and **`InlineFormsInstaller::VERSION`** → **7.13.10** (three-gem lockstep with **validation_hints**).
12
+ - **Generated app Gemfile:** `inline_forms` and `validation_hints` pinned at `~> 7` (Bundler resolves the highest 7.x), not `~> 7.13` / exact installer version.
13
+ - **`inline_forms` gemspec:** `validation_hints ~> 7`.
14
+ - **`inline_forms_installer` gemspec:** `inline_forms ~> 7` (not locked to installer version).
15
+ - **`InlineFormsInstaller::Creator`:** removed install-time check that installer and engine versions must match.
16
+ - **`README.rdoc`:** documents `~> 7` pins and joint releases instead of matching versions at `gem install` time.
17
+
18
+ ## [7.13.9] - 2026-05-20
19
+
20
+ ### Changed
21
+
22
+ - **`InlineForms::VERSION`**, **`InlineFormsInstaller::VERSION`**, and **`ValidationHints::VERSION`** → **7.13.9** (three-gem lockstep; publish all three to RubyGems together via `rake release:all` plus `validation_hints` release).
23
+ - **`inline_forms_installer` gemspec:** depends on `inline_forms ~> <installer version>` so `gem install inline_forms_installer` pulls a matching engine.
24
+ - **`InlineFormsInstaller::Creator`:** aborts before `rails new` when the installed `inline_forms` gem version differs from `inline_forms_installer` (avoids `validation_hints ~> 6.3` vs `>= 7.13` resolver failures). Defines `exit_on_failure?` for Thor.
25
+ - **`README.rdoc`:** documents that `inline_forms`, `inline_forms_installer`, and matching `validation_hints` must share the same release; `gem install inline_forms_installer` installs the CLI (not `gem install inline_forms` alone).
26
+
7
27
  ## [7.13.8] - 2026-05-20
8
28
 
9
29
  ### Added
data/README.rdoc CHANGED
@@ -10,7 +10,13 @@ We will post a notice when the gem is good again.
10
10
 
11
11
  = Usage
12
12
 
13
- gem install inline_forms
13
+ The +inline_forms create+ CLI ships in the +inline_forms_installer+ gem (not in +inline_forms+ itself). Install the installer to get the +inline_forms+ executable:
14
+
15
+ gem install inline_forms_installer
16
+
17
+ Generated apps pin +inline_forms+ and +validation_hints+ at +~> 7+ (Bundler picks the latest 7.x). The three gems (+inline_forms+, +inline_forms_installer+, +validation_hints+) are released together with the same version number; use a current +inline_forms_installer+ so the installer template matches current Rails pins. To add the engine to an existing Rails app without the CLI:
18
+
19
+ gem install inline_forms inline_forms_installer
14
20
 
15
21
  If you want to just start a new app called MyApp:
16
22
 
@@ -240,7 +246,7 @@ In every case the Turbo wiring is the same: +link_options: { data: { turbo_frame
240
246
 
241
247
  == Generated application +rails-i18n+
242
248
 
243
- New apps get +rails-i18n+ from RubyGems (+ '~> 7.0'+), not from the +svenfuchs/rails-i18n+ Git repository. Release line 7.0.x declares +railties+ between 6 and 8, which matches the template’s Rails 6.1.3.1. The upstream repository’s default branch is aimed at newer Rails and would pull in +railties+ 8+, which cannot be resolved together with Rails 6.1.
249
+ New apps get +rails-i18n+ from RubyGems (+ '~> 7.0'+), not from the +svenfuchs/rails-i18n+ Git repository. Release line 7.0.x declares +railties+ between 6 and 8, which matches the installer template’s pinned +rails ~> 7.2.3+ (with +config.load_defaults 7.2+). The upstream repository’s default branch is aimed at newer Rails and would pull in +railties+ 8+, which cannot be resolved together with that pin.
244
250
 
245
251
  == File uploads (CarrierWave)
246
252
 
data/inline_forms.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
20
20
  s.require_paths = ["lib"]
21
21
 
22
- s.add_dependency("validation_hints", ">= 7.13", "< 8.0")
22
+ s.add_dependency("validation_hints", "~> 7")
23
23
  s.add_dependency("rails", ">= 7.2.3.1", "< 7.3")
24
24
  s.add_dependency("rails-i18n", ">= 7.0", "< 8.0")
25
25
 
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module InlineForms
3
- VERSION = "7.13.8"
3
+ VERSION = "7.13.10"
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.8
4
+ version: 7.13.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares
@@ -15,22 +15,16 @@ dependencies:
15
15
  name: validation_hints
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">="
19
- - !ruby/object:Gem::Version
20
- version: '7.13'
21
- - - "<"
18
+ - - "~>"
22
19
  - !ruby/object:Gem::Version
23
- version: '8.0'
20
+ version: '7'
24
21
  type: :runtime
25
22
  prerelease: false
26
23
  version_requirements: !ruby/object:Gem::Requirement
27
24
  requirements:
28
- - - ">="
29
- - !ruby/object:Gem::Version
30
- version: '7.13'
31
- - - "<"
25
+ - - "~>"
32
26
  - !ruby/object:Gem::Version
33
- version: '8.0'
27
+ version: '7'
34
28
  - !ruby/object:Gem::Dependency
35
29
  name: rails
36
30
  requirement: !ruby/object:Gem::Requirement