https://github.com/indieweb/link_rel_parser-ruby
Parse HTTP `Link` headers into a structured format
https://github.com/indieweb/link_rel_parser-ruby
Last synced: 6 months ago
JSON representation
Parse HTTP `Link` headers into a structured format
- Host: GitHub
- URL: https://github.com/indieweb/link_rel_parser-ruby
- Owner: indieweb
- License: cc0-1.0
- Created: 2016-04-11T20:32:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-20T21:58:33.000Z (about 9 years ago)
- Last Synced: 2024-10-29T19:02:27.458Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 18.6 KB
- Stars: 4
- Watchers: 11
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# LinkRelParser (Ruby)
Parse HTTP `Link` headers into a structured format
## Version
0.1.1

## Code Status
[](https://travis-ci.org/indieweb/link_rel_parser-ruby)
[](https://codeclimate.com/github/indieweb/link_rel_parser-ruby)## Installation
Add this line to your application's Gemfile:
```ruby
gem "link_rel_parser"
```And then execute:
```
bundle
```Or install it yourself as:
```
gem install link_rel_parser
```## Usage
```ruby
require "link_rel_parser"
LinkRelParser.parse("https://aaronparecki.com"){
"authorization_endpoint" => "https://aaronparecki.com/auth",
"hub" => "https://switchboard.p3k.io/",
"micropub" => "https://aaronparecki.com/micropub",
"self" => "https://aaronparecki.com/",
"token_endpoint" => "https://aaronparecki.com/auth/token"
}
```## Development
After 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.
To 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).
## Authors
* Shane Becker / [@veganstraightedge](https://github.com/veganstraightedge)
## Contributing
Bug 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.
1. Fork it
2. Get it running (see Installation above)
3. Create your feature branch (`git checkout -b my-new-feature`)
4. Write your code and **specs**
5. Commit your changes (`git commit -am 'Add some feature'`)
6. Push to the branch (`git push origin my-new-feature`)
7. Create new Pull RequestIf you find bugs, have feature requests or questions, please
[file an issue](https://github.com/indieweb/link_rel_parser-ruby/issues).## Code of Conduct
Everyone interacting in the LinkRelParser (Ruby) codebase, issue tracker, chat room, and mailing lists is expected to follow the
[LinkRelParser (Ruby) code of conduct](https://github.com/indieweb/link_rel_parser-ruby/blob/master/CODE_OF_CONDUCT.md).## License
**PUBLIC DOMAIN**
Your heart is as free as the air you breathe.
The ground you stand on is liberated territory.In legal text, LinkRelParser (Ruby) is dedicated to the public domain
using Creative Commons -- CC0 1.0 Universal.[http://creativecommons.org/publicdomain/zero/1.0](http://creativecommons.org/publicdomain/zero/1.0 "Creative Commons — CC0 1.0 Universal")