http_range 1.1.0 → 1.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: d22f33d1f2262be5ab34420858513ef205e2c7f8
4
- data.tar.gz: 15d172574a2cc0addaad0fa99c595c9c24a34b78
3
+ metadata.gz: 246bb94ed8b4e0884b2a32a64048c0a88e17e01a
4
+ data.tar.gz: f98bc9e3a61596f2323cd3be1c730b1db355d778
5
5
  SHA512:
6
- metadata.gz: ea84d9b2e7b591e7f953f93be6762a48238e4bcde1f372a905ac55d9ad06838e63646b231c82dfdb2dc644fcb6367330535cdb02c28dcb4e704b9ec35c67acef
7
- data.tar.gz: 45a7a78e40e059a99118869a3f9815bf91ea1167927daeb7a9a515ad5333d0402f5c33005569dd30d13ccee841a862f12553693e4cf80e26bdd957942f8b70e8
6
+ metadata.gz: 67f42c7422fb9d50721a5a63e06d585841d067ea19d9141446da10a36fc2bb6511c9bf9c75d330b0ad77b528ce3c7e7430e18fa8318235d1b09a07f35dca8cb3
7
+ data.tar.gz: 58cde1cbaa60e9fab3df05016cdfe8888fa3f694049cd7b5704e4db5d040b2efb3417febf7234f89a38d66b66498f51a28e41eee898627e8755d2ee69ae95b7e
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # HTTPRange
2
2
 
3
- A library to parse an HTTP `Range` header with semantics similar to
4
- [Heroku's Range headers][1].
3
+ A library to parse an HTTP `Range` header for HTTP APIs with semantics
4
+ described in [SPEC][1].
5
5
 
6
- [1]: https://devcenter.heroku.com/articles/platform-api-reference#ranges
6
+ [1]: https://github.com/h3h/http_range/blob/master/SPEC.md
7
7
 
8
8
  ## Installation
9
9
 
@@ -68,7 +68,7 @@ Inspired by Heroku's [Interagent HTTP API Design][2] as well as brandur's
68
68
 
69
69
  ## Contributing
70
70
 
71
- 1. Fork it ( https://github.com/[my-github-username]/http_range/fork )
71
+ 1. Fork it ( https://github.com/h3h/http_range/fork )
72
72
  2. Create your feature branch (`git checkout -b my-new-feature`)
73
73
  3. Commit your changes (`git commit -am 'Add some feature'`)
74
74
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,3 +1,4 @@
1
+ require 'http_range'
1
2
  require 'json'
2
3
 
3
4
  class HTTPRange
@@ -1,3 +1,3 @@
1
1
  class HTTPRange
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_range
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Fults