action_link 1.1.2 → 1.1.4

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: d58f61ee20d79dd66bbca753efb9995e1ea541ecad13efb17b6dbf6303ba5e2f
4
- data.tar.gz: f9a6e0a055824a5c6a6c92cee6c060f21bee5744c402997d90e8baee8401c130
3
+ metadata.gz: 18d3d5b1d7406bf12fdcafada8657bee46d7fa72a3d1996e8fbfed8d8d73cf6a
4
+ data.tar.gz: 0d0213aa426a0d2186844b5fd74d945271014692a2deac49274fa3c845911f2e
5
5
  SHA512:
6
- metadata.gz: 873e513d14443935bd580d751a27d85788d6c0bf562fe1e12cd0a8b1e41847ef0fdd2c069880947fd08bb912cfef3b61572a1b6e3d326c9e929c434cc115943e
7
- data.tar.gz: 62dfd9f82a195c626ef6874a1644c4cfdfdbc7be55fa91b4b95d3d7ab4b646f4a1739e7ae8ce3774d1b387353f12873b91356840a72d8079d673a35e1f8014a9
6
+ metadata.gz: 4dbf16ddb95a21f5b119411198ee802e806f62bdc58475a7e95b2616087f9a294bf4b2798889fbf4ce689c66b7733894580c970b61ace3070d6176ba19af0cae
7
+ data.tar.gz: 53f65ac7d41cb5d263455545838eb430a1f6a35e13d1cf1991169faa7e349267a1f0a8e65d650e2008cf66b3ef37bff93c03414f5c86f954e84f210e6e36cbca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.1.3] - 2026-05-26
4
+
5
+ - Fix auto-symlink for vscode snippets
6
+
3
7
  ## [1.1.0] - 2026-04-28
4
8
 
5
9
  - Attempt to fix warnings in rails boot
@@ -8,7 +8,7 @@ module ActionLink
8
8
  class Engine < ::Rails::Engine
9
9
  isolate_namespace ActionLink
10
10
 
11
- initializer "action_link.assets" do |app|
11
+ initializer 'action_link.assets' do |app|
12
12
  app.config.assets.paths << Engine.root.join('app/stylesheets')
13
13
  end
14
14
 
@@ -20,6 +20,7 @@ module ActionLink
20
20
  target = vscode_dir.join('action_link.code-snippets')
21
21
  source = Engine.root.join('vscode/action_link.code-snippets')
22
22
 
23
+ FileUtils.rm_f(target.to_s)
23
24
  FileUtils.ln_s(source, target, force: true)
24
25
  end
25
26
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionLink
4
- VERSION = '1.1.2'
4
+ VERSION = '1.1.4'
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.1.2
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo