{"id":21191705,"url":"https://github.com/indieweb/link_rel_parser-ruby","last_synced_at":"2025-10-15T17:02:34.262Z","repository":{"id":56881302,"uuid":"56005520","full_name":"indieweb/link_rel_parser-ruby","owner":"indieweb","description":"Parse HTTP `Link` headers into a structured format","archived":false,"fork":false,"pushed_at":"2016-04-20T21:58:33.000Z","size":19,"stargazers_count":5,"open_issues_count":2,"forks_count":1,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-09-25T00:32:00.209Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/indieweb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-11T20:32:01.000Z","updated_at":"2024-11-13T22:45:11.000Z","dependencies_parsed_at":"2022-08-20T22:31:15.120Z","dependency_job_id":null,"html_url":"https://github.com/indieweb/link_rel_parser-ruby","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/indieweb/link_rel_parser-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indieweb%2Flink_rel_parser-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indieweb%2Flink_rel_parser-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indieweb%2Flink_rel_parser-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indieweb%2Flink_rel_parser-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/indieweb","download_url":"https://codeload.github.com/indieweb/link_rel_parser-ruby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indieweb%2Flink_rel_parser-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278856249,"owners_count":26057826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T19:04:37.769Z","updated_at":"2025-10-15T17:02:34.211Z","avatar_url":"https://github.com/indieweb.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LinkRelParser (Ruby)\n\nParse HTTP `Link` headers into a structured format\n\n\n## Version\n\n0.1.1\n\n![Version 0.1.1](https://img.shields.io/badge/VERSION-0.1.1-green.svg)\n\n\n## Code Status\n\n[![Build Status](https://travis-ci.org/indieweb/link_rel_parser-ruby.svg?branch=master)](https://travis-ci.org/indieweb/link_rel_parser-ruby)\n[![Code Climate](https://codeclimate.com/github/indieweb/link_rel_parser-ruby/badges/gpa.svg)](https://codeclimate.com/github/indieweb/link_rel_parser-ruby)\n\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem \"link_rel_parser\"\n```\n\nAnd then execute:\n\n```\nbundle\n```\n\nOr install it yourself as:\n\n```\ngem install link_rel_parser\n```\n\n\n## Usage\n\n```ruby\nrequire \"link_rel_parser\"\nLinkRelParser.parse(\"https://aaronparecki.com\")\n\n{\n  \"authorization_endpoint\" =\u003e \"https://aaronparecki.com/auth\",\n  \"hub\"                    =\u003e \"https://switchboard.p3k.io/\",\n  \"micropub\"               =\u003e \"https://aaronparecki.com/micropub\",\n  \"self\"                   =\u003e \"https://aaronparecki.com/\",\n  \"token_endpoint\"         =\u003e \"https://aaronparecki.com/auth/token\"\n}\n```\n\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec link_rel_parser` to use the gem in this directory, ignoring other installed copies of this gem.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Authors\n\n* Shane Becker / [@veganstraightedge](https://github.com/veganstraightedge)\n\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/indieweb/link_rel_parser-ruby/issues. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n1. Fork it\n2. Get it running (see Installation above)\n3. Create your feature branch (`git checkout -b my-new-feature`)\n4. Write your code and **specs**\n5. Commit your changes (`git commit -am 'Add some feature'`)\n6. Push to the branch (`git push origin my-new-feature`)\n7. Create new Pull Request\n\nIf you find bugs, have feature requests or questions, please\n[file an issue](https://github.com/indieweb/link_rel_parser-ruby/issues).\n\n\n## Code of Conduct\n\nEveryone interacting in the LinkRelParser (Ruby) codebase, issue tracker, chat room, and mailing lists is expected to follow the\n[LinkRelParser (Ruby) code of conduct](https://github.com/indieweb/link_rel_parser-ruby/blob/master/CODE_OF_CONDUCT.md).\n\n\n## License\n\n**PUBLIC DOMAIN**\n\nYour heart is as free as the air you breathe. \u003cbr\u003e\nThe ground you stand on is liberated territory.\n\nIn legal text, LinkRelParser (Ruby) is dedicated to the public domain\nusing Creative Commons -- CC0 1.0 Universal.\n\n[http://creativecommons.org/publicdomain/zero/1.0](http://creativecommons.org/publicdomain/zero/1.0 \"Creative Commons \u0026mdash; CC0 1.0 Universal\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findieweb%2Flink_rel_parser-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Findieweb%2Flink_rel_parser-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findieweb%2Flink_rel_parser-ruby/lists"}