action_link 1.1.2 → 1.1.3

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: 18c107b0004ce76fad39d7e16177df40baddc940e162c7ee6694d279ff7c582f
4
+ data.tar.gz: 04f8fc2174840b3116e6a20d08ec3194d4a8b6cf05e0d51df164041f5818dd41
5
5
  SHA512:
6
- metadata.gz: 873e513d14443935bd580d751a27d85788d6c0bf562fe1e12cd0a8b1e41847ef0fdd2c069880947fd08bb912cfef3b61572a1b6e3d326c9e929c434cc115943e
7
- data.tar.gz: 62dfd9f82a195c626ef6874a1644c4cfdfdbc7be55fa91b4b95d3d7ab4b646f4a1739e7ae8ce3774d1b387353f12873b91356840a72d8079d673a35e1f8014a9
6
+ metadata.gz: 0cc53330f62e7d17ff60f0f8566472ed82ab6c58972c79f1abd28bcfffe076efd6f7e87e5f48b0445639fcf03bfaea116ef70d3a46a22266397f002fba222882
7
+ data.tar.gz: 62104e62c216cdbe67ca6c29c517fbccb207596aed2d6f2bd42d5aac6d50a351d6ee20c327e9e3ca3c48862311f4915ef70a2096dfab0ff29fef81bb0fb5e02f
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
@@ -20,7 +20,9 @@ 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.ln_s(source, target, force: true)
23
+ unless target.symlink? && target.readlink.to_s == source.to_s
24
+ FileUtils.ln_s(source, target, force: true)
25
+ end
24
26
  end
25
27
  end
26
28
 
@@ -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.3'
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo