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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0516098ec3bef60429834f965c4bbbd69a1a7f2200ea5b28a0fab21efe102b11'
4
- data.tar.gz: f7c0de1fb06f0e9801bf7e2b77e0b626274fa99165675d87d5f89da3bc7a5df0
3
+ metadata.gz: 637cf99d18bc884de575127df50e83f093214f50ff777a04a578001282cbef0c
4
+ data.tar.gz: d4a8ce861177c7a7c8de87c2905920a373a415208567f32325e0330ff8e15baf
5
5
  SHA512:
6
- metadata.gz: 74d6fbfa03a53a8a5828c795d17d062c96b61acc05f893523872099a55e70dcb236878c27b102282894cc338074058308ce250dfc465a3a772743af8e82e3ee4
7
- data.tar.gz: '058634de3a663e430475736115c16251f09edc135eafc9d358acfe27cbea9c42dcc10e10f9b8fa85965120df4ae4b4a128e6910b498dda833b085c12e2d941f8'
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
@@ -1,3 +1,3 @@
1
1
  module Linecounter
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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: