action_link 1.0.2 → 1.1.0

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: c33e8b0089be923178f23d55374d1716fa494f3c4b96743ae8266e4b71a66658
4
+ data.tar.gz: f2bcdf399c150c9c0a267ab789ae01fbc9ba00518fe5fbcc24df0cb95073d495
5
5
  SHA512:
6
- metadata.gz: 37f62b8174156a9433a7bb62b81e074761f0e0fd10f28a10cad2a40535daed71294c89964e7eb4fe3cc7d05e8cfdf24f80d7e863dbdd3e99f68f18dd3ebd4d38
7
- data.tar.gz: 883b27067d639f1fd1f39c14c086e2f3da043438ae80a7cfc1d6ec7e8a2a3030a627bda1319392d9cda2e98fc140381505f544cd41d6b77b73f2f465db857a47
6
+ metadata.gz: d81dc1c9cdd2b9d5cfcbfdf7a868951b04f12520fed0acc8b276ec50603115e175fb7c82c82ed6f10a2450d2908ba5c7bd22b1489592c58cba64ae5299ee988f
7
+ data.tar.gz: 050da79ed63d7b44fe34488b16e85d711155f6ba85f500b87652b85403a5d329d3166e50177f2fe285ff16311791c37afceb2db378e6f05da33bc864a78fd744
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,16 @@ 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_relative '../../app/components/action_link/application_component'
40
+ require_relative '../../app/components/action_link/base'
41
+ require_relative '../../app/components/action_link/custom'
42
+ require_relative '../../app/components/action_link/destroy'
43
+ require_relative '../../app/components/action_link/edit'
44
+ require_relative '../../app/components/action_link/new'
45
+ require_relative '../../app/components/action_link/show'
46
+ require_relative '../../app/components/action_link/download'
47
+ end
46
48
  end
47
49
  end
48
50
  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.0'
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.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo