public_suffix 7.0.0 → 7.0.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/AGENTS.md +38 -0
- data/CHANGELOG.md +300 -185
- data/CLAUDE.md +1 -0
- data/CONTRIBUTING.md +129 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/RELEASING.md +5 -4
- data/data/list.txt +126 -39
- data/lib/public_suffix/domain.rb +1 -1
- data/lib/public_suffix/errors.rb +1 -1
- data/lib/public_suffix/list.rb +1 -1
- data/lib/public_suffix/rule.rb +1 -1
- data/lib/public_suffix/version.rb +2 -2
- data/lib/public_suffix.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96c64092cb38c0249d59c8ab4193438275155f8871affda9eb141cdd8bce1d0c
|
|
4
|
+
data.tar.gz: 1d3c97ee5f787e0bc69c2552b9e6ff587e3a2d0a7e4ddd91b1be652173f03269
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ddedb44078dd0e2d3c2d15f25021fdd0bfe251fd2507cfba82dee37b6a67a4ce0adeecf6f0c884930d05c0faae02550c9cfe15ac3f616f8fd2561973c5124cd
|
|
7
|
+
data.tar.gz: 729bc2bb98203d65555b9e1aedd62f402f809186aefea93077b9c648b0c68a6587206697f76c8e31299ffa2d207f823794241840c1f3805cee32b461c3a9d11d
|
data/AGENTS.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Agent Instructions
|
|
2
|
+
|
|
3
|
+
Instructions for AI coding agents when working on this project.
|
|
4
|
+
|
|
5
|
+
## Agent Organization
|
|
6
|
+
|
|
7
|
+
When creating agent instruction files:
|
|
8
|
+
|
|
9
|
+
- The main file should always be named `AGENTS.md`
|
|
10
|
+
- Create a `CLAUDE.md` symlink pointing to `AGENTS.md` for compatibility with Claude Code
|
|
11
|
+
|
|
12
|
+
## Project Overview
|
|
13
|
+
|
|
14
|
+
PublicSuffix for Ruby is a Ruby domain name parser based on the Public Suffix List. It provides domain parsing, validation, and extraction with support for private domains, FQDN handling, and custom rule definitions.
|
|
15
|
+
|
|
16
|
+
## Key Documentation
|
|
17
|
+
|
|
18
|
+
- **[README.md](README.md)** - Library overview, features, usage examples, and API reference
|
|
19
|
+
- **[CONTRIBUTING.md](CONTRIBUTING.md)** - Contribution guidelines, commit format, testing approach
|
|
20
|
+
- **[Public Suffix List](https://publicsuffix.org/)** - Official Public Suffix List documentation
|
|
21
|
+
- **[RubyDoc](https://rubydoc.info/gems/public_suffix)** - API documentation
|
|
22
|
+
|
|
23
|
+
## Project-Specific Context
|
|
24
|
+
|
|
25
|
+
### Code Style Notes
|
|
26
|
+
|
|
27
|
+
- Use Conventional Commits format (see [CONTRIBUTING.md](CONTRIBUTING.md#commit-message-guidelines))
|
|
28
|
+
- Follow Ruby community style guidelines
|
|
29
|
+
- Do not include AI attribution in commit messages or code comments
|
|
30
|
+
- Tests are mandatory for all changes
|
|
31
|
+
|
|
32
|
+
## Project Structure
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
lib/public_suffix/ # Main library code
|
|
36
|
+
test/ # Test suite
|
|
37
|
+
data/ # Public Suffix List data
|
|
38
|
+
```
|