link_rel_parser 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 841f4f2d64a7f8fc87fc1ea182136c4ee10dc224
4
- data.tar.gz: 7f0de68dc12760ae1d90ffdf2d46a7de0d03937e
3
+ metadata.gz: 2b07dba360da5f1fabbed1cee9852fcc71b2b58c
4
+ data.tar.gz: 34d54369e8b71687579e63c795e1c3dd4e34c019
5
5
  SHA512:
6
- metadata.gz: 28b51d90582296abd308de0c93d6b450607b477832ff709f625c1ee4c44cb3a7d146fe7df7aef3c037a78773aafba94e05206bc30ce3c51cac3300f6cc9df507
7
- data.tar.gz: 12950785da3db3b822d5f68fa6fcf75072637f2817c3c34aaabc38333640853030e88ca582640671a53b61a4176311b6d4dd708317ecae39251188db679fe668
6
+ metadata.gz: 64bda4cfe03dcc889dffad42ae44caa116ee4bce6d97040084c738393922c5233083020ae62213130037673ff506b1a5dd82b3710028445bedfa865ba6e99e1e
7
+ data.tar.gz: bcf8824ea938916c61a897584cdb37a85d63c753462d446431c2810f695e5042ecc2794dc9192e9def8fcf580f5e041fd877e92f1f9b7361dab91fe548a81cd3
data/README.md CHANGED
@@ -40,8 +40,8 @@ gem install link_rel_parser
40
40
  ## Usage
41
41
 
42
42
  ```ruby
43
- require "LinkRelParser"
44
- LinkRelParser("https://aaronparecki.com")
43
+ require "link_rel_parser"
44
+ LinkRelParser.parse("https://aaronparecki.com")
45
45
 
46
46
  {
47
47
  "authorization_endpoint" => "https://aaronparecki.com/auth",
@@ -1,3 +1,3 @@
1
1
  module LinkRelParser
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Shane Becker"]
10
10
  spec.email = ["veganstraightedge@gmail.com"]
11
11
 
12
- spec.summary = %q{Parse HTTP `Link` headers into a structured format}
13
- spec.description = %q{Ruby port of https://github.com/indieweb/link-rel-parser-php}
14
- spec.homepage = "https://github.com/indieweb/link-rel-parser-ruby"
12
+ spec.summary = %q{Ruby port of https://github.com/indieweb/link-rel-parser-php}
13
+ spec.description = %q{Parse HTTP `Link` headers into a structured format}
14
+ spec.homepage = "https://github.com/indieweb/link_rel_parser-ruby"
15
15
  spec.license = "CC0"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: link_rel_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Becker
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
- description: Ruby port of https://github.com/indieweb/link-rel-parser-php
83
+ description: Parse HTTP `Link` headers into a structured format
84
84
  email:
85
85
  - veganstraightedge@gmail.com
86
86
  executables:
@@ -102,7 +102,7 @@ files:
102
102
  - lib/link_rel_parser.rb
103
103
  - lib/link_rel_parser/version.rb
104
104
  - link_rel_parser.gemspec
105
- homepage: https://github.com/indieweb/link-rel-parser-ruby
105
+ homepage: https://github.com/indieweb/link_rel_parser-ruby
106
106
  licenses:
107
107
  - CC0
108
108
  metadata: {}
@@ -125,5 +125,5 @@ rubyforge_project:
125
125
  rubygems_version: 2.5.1
126
126
  signing_key:
127
127
  specification_version: 4
128
- summary: Parse HTTP `Link` headers into a structured format
128
+ summary: Ruby port of https://github.com/indieweb/link-rel-parser-php
129
129
  test_files: []