the_local 0.4.0 → 0.4.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: f7e8e6af806f08c3db82c0cd4d2087ca1d09a883e7175c7077e7bd233a2d853a
4
- data.tar.gz: a44109b99e55bd41534d195a26ae7b01ce5765851573358190e80f009b6b4954
3
+ metadata.gz: c99c7f1c03fdf84c8e5180e9f3fe740a4712d16843b05a68be93c6e5f8d084cf
4
+ data.tar.gz: 0f54279ed111c33b424579dfdfe1d913cd9e1a0956ef906a1e24f28b4bf23151
5
5
  SHA512:
6
- metadata.gz: 07ef43635b84f2581ab545563e80145c1ca6aad3d621c36c8236b19492ee566e92885bdfc60afe584499acc7321dbfe798b29b984d4efabe1c1c103951ef8a95
7
- data.tar.gz: 130fcf910919e1df3e142f8510a5dc02323a200e806bb66407007b39bbffe5d6d88ff705a70b2bf2ddc492b68814eaed327a696ae65ba02bf17f95eb798e9aa2
6
+ metadata.gz: 65973e9cc66580978399dc2dfed03dbea10c3c76837c04f37dd82aa32adeb77a7c86e9141b38fa7ce3a451cdab1ea7baf779f9e144fdd063f247e17493a78f6b
7
+ data.tar.gz: c717b4c90d5e9fc3e07c7efaab0a78dc529799f0d7d4592d49405342380a39ac8a3ed97c1cd3813c9df462073f3b45fbc946f94bd04b790d1f4e437a7a2f413d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.4.1] - 2026-07-31
2
+
3
+ - Installing no longer appends a blank line to the host's `CLAUDE.md` on every
4
+ run. Replacing the marked delegation section left the file's existing trailing
5
+ newline in place and the write added another on top of it, so the newlines
6
+ accumulated across `bundle`/refresh cycles.
7
+
1
8
  ## [0.4.0] - 2026-07-31
2
9
 
3
10
  - A provider gem ships **no Ruby and no guide**. Its committed
@@ -19,7 +19,7 @@ module TheLocal
19
19
  def call
20
20
  path = File.join(@destination, @filename)
21
21
  existing = File.exist?(path) ? File.read(path) : ""
22
- File.write(path, "#{merge(existing)}\n")
22
+ File.write(path, "#{merge(existing).chomp}\n")
23
23
  end
24
24
 
25
25
  def rule
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TheLocal
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_local
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tylercschneider