File: readme.md

package info (click to toggle)
ruby-protocol-url 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: ruby: 504; makefile: 4
file content (63 lines) | stat: -rw-r--r-- 2,831 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Protocol::URL

Provides abstractions for working with URLs.

[![Development Status](https://github.com/socketry/protocol-url/workflows/Test/badge.svg)](https://github.com/socketry/protocol-url/actions?workflow=Test)

## Usage

Please see the [project documentation](https://github.com/socketry/protocol-url) for more details.

  - [Getting Started](https://github.com/socketry/protocol-urlguides/getting-started/index) - This guide explains how to get started with `protocol-url` for parsing, manipulating, and constructing URLs in Ruby.

  - [Working with References](https://github.com/socketry/protocol-urlguides/working-with-references/index) - This guide explains how to use <code class="language-ruby">Protocol::URL::Reference</code> for managing URLs with query parameters and fragments.

## Contributing

We welcome contributions to this project.

1.  Fork it.
2.  Create your feature branch (`git checkout -b my-new-feature`).
3.  Commit your changes (`git commit -am 'Add some feature'`).
4.  Push to the branch (`git push origin my-new-feature`).
5.  Create new Pull Request.

### Developer Certificate of Origin

In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.

### Community Guidelines

This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.

## Releases

Please see the [project releases](https://github.com/socketry/protocol-urlreleases/index) for all releases.

### v0.4.0

  - Add comparison methods to `Protocol::URL::Relative` (and by inheritance to `Protocol::URL::Absolute`):
      - `#==` for structural equality comparison (compares path, query, fragment components).
      - `#===` for string equality comparison (enables case statement matching).
      - `#<=>` for ordering and sorting.
      - `#hash` for hash key support.
      - `#equal?` for component-based equality checking.
  - Add JSON serialization support to `Protocol::URL::Relative`:
      - `#as_json` returns the string representation.
      - `#to_json` returns a JSON-encoded string.

### v0.3.0

  - Add `relative(target, from)` for computing relative paths between URLs.

### v0.2.0

  - Move `Protocol::URL::PATTERN` to `protocol/url/pattern.rb` so it can be shared more easily.

### v0.1.0

  - Initial implementation.

## See Also

  - [protocol-http](https://github.com/socketry/protocol-http) — HTTP protocol implementation and abstractions.