heimdal_ai_analyze 0.1.1 → 0.1.2

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: fc0b28182c96cbd7d687b4e1b219a7010d1773756d5abb17855ebe855fdf5b00
4
- data.tar.gz: 948d0b8a93c07c392290a6807d6e8010743bf5158e620cf2afaed25b0cb6fa30
3
+ metadata.gz: 9f303598cd8959aa063b6fcb89344423566549ce2d45bcb3a9162df7a8c7be3b
4
+ data.tar.gz: 342d5fa9764a1875b246faa8bac4940997c9c82c55da3689fddb8dfe3c08af84
5
5
  SHA512:
6
- metadata.gz: cfb229eb3a88b328ae677fb235ba09447acc5550cf9981b8245fe88567eba63846f89cf9bea1a8d6f991e5307c7c08799eccd5eca5d459fefa49f464814d0b6d
7
- data.tar.gz: eafa7b0af64cbbc3d2a161497ec3d3f0a596ecdfa0d8d72600af228cf0883c4edf9703b6c950d826f4d2c78edc425c506637bc01506645c4cf7d561d44ae6e8a
6
+ metadata.gz: ccd5058c6e293bf97d07218f3a798baaa75a7e37d970f2c643410b9314dcb72198c885c291d03d02c36c04943c79060900fc55d519d898687096d91587ca89e7
7
+ data.tar.gz: 5965774f8c7700495bc4a4cdbe7dab264970c6997eb448e34df774bdd96df8ca421008839f7123cd8b6a6b94d0ba471f8b9d9da8f475007ec537a26f80c26f5a
data/README.md CHANGED
@@ -1,11 +1,14 @@
1
1
  # Heimdal AI Analyze
2
2
 
3
+ [![Repo views](https://komarev.com/ghpvc/?username=ffarhhan-heimdal-ai-analyze&label=Repo+views&style=for-the-badge)](https://github.com/ffarhhan/heimdal_ai_analyze)
4
+
3
5
  [![Gem Version](https://badge.fury.io/rb/heimdal_ai_analyze.svg)](https://rubygems.org/gems/heimdal_ai_analyze)
4
6
 
5
7
  **Heimdal AI Analyze** is a Ruby gem that adds a **git pre-commit** hook for **AI-assisted review** of your **staged diff**. Use `git analyze` to run the review before your commit; a normal `git commit` does not trigger analysis unless you opt in.
6
8
 
7
9
  _Sees every line. Judges every commit. No bad code crosses the Bifrost._
8
10
 
11
+ - **Owners:** [@ffarhhan](https://github.com/ffarhhan), [@namanverma98](https://github.com/namanverma98)
9
12
  - **RubyGems:** [rubygems.org/gems/heimdal_ai_analyze](https://rubygems.org/gems/heimdal_ai_analyze)
10
13
  - **Source:** [github.com/ffarhhan/heimdal_ai_analyze](https://github.com/ffarhhan/heimdal_ai_analyze)
11
14
 
@@ -5,11 +5,11 @@ require_relative "lib/heimdal_ai_analyze/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "heimdal_ai_analyze"
7
7
  spec.version = HeimdalAiAnalyze::VERSION
8
- spec.authors = ["ffarhhan"]
9
- spec.email = ["ffarhhan@users.noreply.github.com"]
8
+ spec.authors = ["ffarhhan", "namanverma98"]
9
+ spec.email = ["ffarhhan@users.noreply.github.com", "namanv98@gmail.com"]
10
10
 
11
11
  spec.summary = "Heimdal AI Analyze — git pre-commit hook for AI-assisted review of staged diffs (git analyze)"
12
- spec.description = "Heimdal AI Analyze installs a git pre-commit hook that runs an AI-assisted code review of your staged diff when you commit with analysis enabled (e.g. `git analyze -m \"message\"`). Reviews security, duplication, complexity, style, and tests; critical issues can block the commit. Requires CURSOR_API_KEY in the environment or a repo-local `.env` (gitignored)."
12
+ spec.description = "Heimdal AI Analyze installs a git pre-commit hook that runs an AI-assisted code review of your staged diff when you commit with analysis enabled (e.g. `git analyze -m \"message\"`). Reviews security, duplication, complexity, style, and tests; critical issues can block the commit. Requires CURSOR_API_KEY in the environment or a repo-local `.env`."
13
13
  spec.homepage = "https://github.com/ffarhhan/heimdal_ai_analyze"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 3.1.0"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HeimdalAiAnalyze
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,22 +1,24 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heimdal_ai_analyze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ffarhhan
8
+ - namanverma98
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2026-04-14 00:00:00.000000000 Z
12
+ date: 2026-04-17 00:00:00.000000000 Z
12
13
  dependencies: []
13
14
  description: Heimdal AI Analyze installs a git pre-commit hook that runs an AI-assisted
14
15
  code review of your staged diff when you commit with analysis enabled (e.g. `git
15
16
  analyze -m "message"`). Reviews security, duplication, complexity, style, and tests;
16
17
  critical issues can block the commit. Requires CURSOR_API_KEY in the environment
17
- or a repo-local `.env` (gitignored).
18
+ or a repo-local `.env`.
18
19
  email:
19
20
  - ffarhhan@users.noreply.github.com
21
+ - namanv98@gmail.com
20
22
  executables:
21
23
  - heimdal-ai-analyze-install
22
24
  extensions: []