action_link 1.0.2 → 1.1.1

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: 5a53877ccc0ccf8e6eae1756648ccd027561dfc3b2c03548531a9fd9e667f584
4
- data.tar.gz: 9c11cb23474ed8d3778f8e54e9aa05a66015401150daf6508b69c2cb0ef023b4
3
+ metadata.gz: 2c83cffed880179c51bfab89a57f29de4ebc6e23076f13e573d07a4a5aa105f8
4
+ data.tar.gz: d2ebdeb98cac98428012589bd621e4323c8fbdc96413f24a9610528c1e3efaa3
5
5
  SHA512:
6
- metadata.gz: 37f62b8174156a9433a7bb62b81e074761f0e0fd10f28a10cad2a40535daed71294c89964e7eb4fe3cc7d05e8cfdf24f80d7e863dbdd3e99f68f18dd3ebd4d38
7
- data.tar.gz: 883b27067d639f1fd1f39c14c086e2f3da043438ae80a7cfc1d6ec7e8a2a3030a627bda1319392d9cda2e98fc140381505f544cd41d6b77b73f2f465db857a47
6
+ metadata.gz: 41992785fde994ee4fd6a76b3c847a266fdfa494286e3dbac5e009f380fcaa2c5f529ec52d41d3172e2f9e52261c21b1858169a29986be59556d548fe41092e9
7
+ data.tar.gz: dbc1050b62897bed48566c0ced2c20e340ec9ffc73bdd7d441515ec8ba857601e324e49bf02fd10dbb83af2335541d8db20909734248b6a91791e62093076d0e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.1.0] - 2026-04-28
4
+
5
+ - Attempt to fix warnings in rails boot
6
+
3
7
  ## [1.0.2] - 2026-03-31
4
8
 
5
9
  - Remove too invasive CSS default styling for links
@@ -35,14 +35,18 @@ module ActionLink
35
35
  # AND the view_component gem has been fully initialized (configured).
36
36
  #
37
37
  # That's right here and now.
38
- require_relative '../../app/components/action_link/application_component'
39
- require_relative '../../app/components/action_link/base'
40
- require_relative '../../app/components/action_link/custom'
41
- require_relative '../../app/components/action_link/destroy'
42
- require_relative '../../app/components/action_link/edit'
43
- require_relative '../../app/components/action_link/new'
44
- require_relative '../../app/components/action_link/show'
45
- require_relative '../../app/components/action_link/download'
38
+ ActiveSupport.on_load(:action_view) do
39
+ require 'view_component'
40
+
41
+ require_relative '../../app/components/action_link/application_component'
42
+ require_relative '../../app/components/action_link/base'
43
+ require_relative '../../app/components/action_link/custom'
44
+ require_relative '../../app/components/action_link/destroy'
45
+ require_relative '../../app/components/action_link/edit'
46
+ require_relative '../../app/components/action_link/new'
47
+ require_relative '../../app/components/action_link/show'
48
+ require_relative '../../app/components/action_link/download'
49
+ end
46
50
  end
47
51
  end
48
52
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionLink
4
- VERSION = '1.0.2'
4
+ VERSION = '1.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_link
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo