linecounter 0.1.0 → 0.1.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 +4 -4
- data/CHANGELOG.md +30 -0
- data/lib/linecounter/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 637cf99d18bc884de575127df50e83f093214f50ff777a04a578001282cbef0c
|
|
4
|
+
data.tar.gz: d4a8ce861177c7a7c8de87c2905920a373a415208567f32325e0330ff8e15baf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f833a265bdb222fc527cf48f5b92851a893d18053e126610aa833a0cce7c256b6587a12d4d914cf77f1d974ab9bf3ee75aeee1b43a35a11cd61b215677095f55
|
|
7
|
+
data.tar.gz: 15e1f7d15b180f123f6f95a64c453b2ddba057a1fe6cbfb5bc51e384e093c0eb2858f695dd7e60d0b4552dcc04b7bbaa281e2c23fe6a41b587ad6f27330ac95e
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes are documented here. The format is based on
|
|
4
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
5
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.1.1] - 2026-05-24
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- `rake release` one-command flow (build, tag `vX.Y.Z`, push to RubyGems),
|
|
13
|
+
gated on the test suite so a failing build is never released.
|
|
14
|
+
- Gem metadata: `changelog_uri` and `allowed_push_host`; `CHANGELOG.md` is now
|
|
15
|
+
shipped in the gem.
|
|
16
|
+
|
|
17
|
+
## [0.1.0] - 2026-05-24
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Initial release. Scans a git repository and reports per-file quality
|
|
21
|
+
signals — non-empty lines of code, git churn, control-flow branching, and
|
|
22
|
+
class-structure counts with average statement lines per item — as text or
|
|
23
|
+
JSON.
|
|
24
|
+
- `linecounter` executable; `--repo` defaults to the current directory.
|
|
25
|
+
- AST-based analysis via Prism for accurate structure and branch signals
|
|
26
|
+
(no false positives from keywords in strings, comments, or method bodies).
|
|
27
|
+
|
|
28
|
+
[Unreleased]: https://github.com/roberthopman/linecounter/compare/v0.1.1...HEAD
|
|
29
|
+
[0.1.1]: https://github.com/roberthopman/linecounter/compare/v0.1.0...v0.1.1
|
|
30
|
+
[0.1.0]: https://github.com/roberthopman/linecounter/releases/tag/v0.1.0
|
data/lib/linecounter/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linecounter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Hopman
|
|
@@ -67,6 +67,7 @@ executables:
|
|
|
67
67
|
extensions: []
|
|
68
68
|
extra_rdoc_files: []
|
|
69
69
|
files:
|
|
70
|
+
- CHANGELOG.md
|
|
70
71
|
- LICENSE
|
|
71
72
|
- README.md
|
|
72
73
|
- exe/linecounter
|
|
@@ -84,6 +85,8 @@ licenses:
|
|
|
84
85
|
- MIT
|
|
85
86
|
metadata:
|
|
86
87
|
source_code_uri: https://github.com/roberthopman/linecounter
|
|
88
|
+
changelog_uri: https://github.com/roberthopman/linecounter/blob/main/CHANGELOG.md
|
|
89
|
+
allowed_push_host: https://rubygems.org
|
|
87
90
|
rubygems_mfa_required: 'true'
|
|
88
91
|
rdoc_options: []
|
|
89
92
|
require_paths:
|