textbringer-tree-sitter 1.2.3 → 1.2.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 +4 -4
- data/CLAUDE.md +1 -0
- data/exe/textbringer-tree-sitter +3 -1
- data/lib/textbringer/tree_sitter/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2084dbf24d194e05d6ff690573484ea3db71b78d52ebafeb1ce98942d600639e
|
|
4
|
+
data.tar.gz: e6c0f6ee6678986a35e8f852af3f9be1d6ae94ff7e1d1fd38008ca3217ce90b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aba0e631b6e7ae2672261a8d522d8ce3122fa5f81c33e575e34c7d1dca3e22909636d7e96d78b2a2c4dacbda315199154212c5124df35b51ad1503360ffcf441
|
|
7
|
+
data.tar.gz: ea9d76c8d33cbfd254faebafe57848efcfe410a732d2db2a061c3b700044a38156415c34a03409da1db700ff2bf096246ec3b9fc9f9247313a276371abd23d1e
|
data/CLAUDE.md
CHANGED
|
@@ -157,6 +157,7 @@ cp libtree-sitter-hcl.dylib ~/.textbringer/parsers/darwin-arm64/
|
|
|
157
157
|
3. main でタグを打つ(`git tag vX.Y.Z && git push origin vX.Y.Z`)
|
|
158
158
|
4. **gem push は GitHub Actions が自動で行う**(手動で `gem push` する必要はない)
|
|
159
159
|
5. GitHub Release のリリースノートを整備する(CI が自動作成するが、内容は手動で書き換える)
|
|
160
|
+
- **リリースノートは英語で統一すること**
|
|
160
161
|
|
|
161
162
|
## 参考実装
|
|
162
163
|
|
data/exe/textbringer-tree-sitter
CHANGED
|
@@ -930,6 +930,8 @@ module TextbringerTreeSitterCLI
|
|
|
930
930
|
end
|
|
931
931
|
|
|
932
932
|
# Only run CLI if executed directly (not when loaded by tests)
|
|
933
|
-
|
|
933
|
+
# __FILE__ == $PROGRAM_NAME は直接 ruby で実行した場合にマッチ
|
|
934
|
+
# basename チェックは bundle exec 経由(binstub → Gem.activate_and_load_bin_path → load)でマッチ
|
|
935
|
+
if __FILE__ == $PROGRAM_NAME || File.basename($PROGRAM_NAME) == "textbringer-tree-sitter"
|
|
934
936
|
TextbringerTreeSitterCLI.run(ARGV)
|
|
935
937
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: textbringer-tree-sitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yancya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: textbringer
|