From 835fcbbb4f358395cb919efed7cd60d6649d19e5 Mon Sep 17 00:00:00 2001 From: Filip Christiansen <22807962+filipchristiansen@users.noreply.github.com> Date: Tue, 7 Jan 2025 08:55:27 +0100 Subject: [PATCH] chore: standardize references to 'Gitingest' (resolves Issue #99) (#107) --- README.md | 10 +++++----- src/config.py | 2 +- src/gitingest/cli.py | 2 +- src/gitingest/exceptions.py | 2 +- src/gitingest/ignore_patterns.py | 2 +- src/gitingest/utils.py | 2 +- src/templates/api.jinja | 2 +- src/templates/base.jinja | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index bf1cdf2..3ad5924 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# GitIngest +# Gitingest -[![Image](./docs/frontpage.png "GitIngest main page")](https://gitingest.com) +[![Image](./docs/frontpage.png "Gitingest main page")](https://gitingest.com) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/cyclotruc/gitingest/blob/main/LICENSE) [![PyPI version](https://badge.fury.io/py/gitingest.svg)](https://badge.fury.io/py/gitingest) @@ -37,9 +37,9 @@ pip install gitingest ## 🧩 Browser Extension Usage - - - + + + The extension is open source at [lcandy2/gitingest-extension](https://github.com/lcandy2/gitingest-extension). diff --git a/src/config.py b/src/config.py index 1958f30..9b9553c 100644 --- a/src/config.py +++ b/src/config.py @@ -5,7 +5,7 @@ DELETE_REPO_AFTER: int = 60 * 60 # In seconds EXAMPLE_REPOS: list[dict[str, str]] = [ - {"name": "GitIngest", "url": "https://github.com/cyclotruc/gitingest"}, + {"name": "Gitingest", "url": "https://github.com/cyclotruc/gitingest"}, {"name": "FastAPI", "url": "https://github.com/tiangolo/fastapi"}, {"name": "Flask", "url": "https://github.com/pallets/flask"}, {"name": "Tldraw", "url": "https://github.com/tldraw/tldraw"}, diff --git a/src/gitingest/cli.py b/src/gitingest/cli.py index 7da0b1f..6a4b470 100644 --- a/src/gitingest/cli.py +++ b/src/gitingest/cli.py @@ -1,4 +1,4 @@ -""" Command-line interface for the GitIngest package. """ +""" Command-line interface for the Gitingest package. """ # pylint: disable=no-value-for-parameter diff --git a/src/gitingest/exceptions.py b/src/gitingest/exceptions.py index b101f2e..bfb3888 100644 --- a/src/gitingest/exceptions.py +++ b/src/gitingest/exceptions.py @@ -1,4 +1,4 @@ -""" Custom exceptions for the GitIngest package. """ +""" Custom exceptions for the Gitingest package. """ class InvalidPatternError(ValueError): diff --git a/src/gitingest/ignore_patterns.py b/src/gitingest/ignore_patterns.py index c2b382c..a1a902d 100644 --- a/src/gitingest/ignore_patterns.py +++ b/src/gitingest/ignore_patterns.py @@ -1,4 +1,4 @@ -""" Default ignore patterns for GitIngest. """ +""" Default ignore patterns for Gitingest. """ DEFAULT_IGNORE_PATTERNS: list[str] = [ # Python diff --git a/src/gitingest/utils.py b/src/gitingest/utils.py index c93c26a..3c28da8 100644 --- a/src/gitingest/utils.py +++ b/src/gitingest/utils.py @@ -1,4 +1,4 @@ -""" Utility functions for the GitIngest package. """ +""" Utility functions for the Gitingest package. """ import asyncio import functools diff --git a/src/templates/api.jinja b/src/templates/api.jinja index c5e57bd..85fa0c3 100644 --- a/src/templates/api.jinja +++ b/src/templates/api.jinja @@ -1,5 +1,5 @@ {% extends "base.jinja" %} -{% block title %}Git ingest API{% endblock %} +{% block title %}Gitingest API{% endblock %} {% block content %}