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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '084a35b60185cb9effa86043e48492bbdef04d05f0f25b022cd4814b812b3de2'
4
- data.tar.gz: 70c513a2c19d770c0d6d929a9bb8fe868a9df87b899af6eaf4ffe24a4acfc903
3
+ metadata.gz: 96c64092cb38c0249d59c8ab4193438275155f8871affda9eb141cdd8bce1d0c
4
+ data.tar.gz: 1d3c97ee5f787e0bc69c2552b9e6ff587e3a2d0a7e4ddd91b1be652173f03269
5
5
  SHA512:
6
- metadata.gz: 867e2369292df3275da727802270527999530fff53b9683228edf4f183e9f8fd7592cb3da2d2bf0923f2b7c727e778dbc45e329f234e7f1869d74f298994bf5a
7
- data.tar.gz: 9fbbcf8839be0685d98d91e6fb44ec010f3dd2c3e80469b57b1138465701b3b0168da508aa3f7c8a3e46897c8135b337b2b64e1d17fb058e4de02a11efc4e984
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
+ ```