restify 0.3.2.1.b66 → 0.3.2.1.b67

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +8 -4
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MzlkYTNkMjNiMTc0ZWFmMTQ5YTI4NjVhYzIxOGY3NDFmMWZkOTAzZA==
4
+ NmE3YjE4ZmU3OTc3YmUwMzdmM2M0YjNlOGE0YTg2YWRhMTQwZjAwNg==
5
5
  data.tar.gz: !binary |-
6
- Y2VjNzQ2ZDJkZGZlMjk3OTQzNTM1NzY4YzhhODM0YTQwMWQ3MDljNA==
6
+ ZTY0YTZjMjhhYzkwMzRjYmRiZjRlYmJiNmNjMDhjZDgyNDFhNzgxNA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTM3OWZjNGU5OThmZjFmOGNiZmE5N2IxMTY1YTJjN2I1ODZkYWQ5MWM4YzM0
10
- MTVlMTQ5NWQ1YzcyNzY1MDRjMGM0ZGQyMjYyNDE3YTA0OTI5ZGY1NmRhMWU1
11
- MGQwNzMyMWEwMDA5ZTZkOWQwMzI0YzgwZGI3YjNkZGY0MmI3MDM=
9
+ MGNiMmQ0NWYwNzAyZWY0NWVlZDZlMzQwMjJkOGYzMTdiNTAyMzA2Yzc1NDgy
10
+ OGZmMjllMmQwYjVhNTI4MjhkZmM0OTJjMDZlMzI5ZTZjZjk3MGIzYWVjMzM3
11
+ NzM5Y2I2YTFkYjgzYzc0NWZjNjFiMDMwNDMyMWRmZWY5ZWM4OTg=
12
12
  data.tar.gz: !binary |-
13
- ZTQzYmZhMjZlMzRlZGJiYTc0YTEyNWFlYjFkZThhNjI1ZWY2ODJiOTg0YTFl
14
- ZTYwYTc1NGU0YmIxOGEwOGI0OTlkZjY3MTk3OGMxZTFjMGE2M2U0NjQ3MzIy
15
- Y2I5ZDM4MDZlZmE2MzIzODExZDY0OWU5Mjk0NDIwNDVmOTQ3YTg=
13
+ MTBhNjQ5NTdiMGU4ZWMzYmEyOGViOWJkMTUwZGQzNmQ1ZmQ2OGUzOTEzZmFi
14
+ ZjlmMjFmMjY4NTZkZGYzYTM5YjVlMjYzMTE1YzVkNmQ3NTMwYzY3M2RlNmZi
15
+ Mjc3ZWVhN2JjOTliZjNhNTZmOWM0ZmYwOTY0OTQ4NDExZTE5YzY=
data/README.md CHANGED
@@ -6,12 +6,12 @@ Restify scans Link headers and returned resource for links and relations to othe
6
6
 
7
7
  Restify can be used to consume hypermedia REST APIs (like GitHubs), to build a site-specific library or to use within your own backend services.
8
8
 
9
- Restify is build upon
9
+ Restify is build upon the following libraries:
10
10
 
11
11
  * [obligation](https://github.com/jgraichen/obligation)
12
12
  * [addressable](https://github.com/sporkmonger/addressable)
13
13
 
14
- provided HTTP adapters for
14
+ It provides HTTP adapters to use with:
15
15
 
16
16
  * [em-http-request](https://github.com/igrigorik/em-http-request)
17
17
  * [celluloid-io](https://github.com/celluloid/celluloid-io) / [http](https://github.com/httprb/http) (experimental)
@@ -19,9 +19,13 @@ provided HTTP adapters for
19
19
 
20
20
  They are mostly run in a background thread and may not survive mid-application forks.
21
21
 
22
- and can decode and encode
22
+ Included processors can handle:
23
23
 
24
- * [JSON](https://github.com/intridea/multi_json)
24
+ * Plain JSON with GitHub-Style relations
25
+
26
+ (Beside HTTP Link header that's always supported)
27
+
28
+ Restify required Ruby 2.0+.
25
29
 
26
30
  ## Restify is still under development
27
31
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2.1.b66
4
+ version: 0.3.2.1.b67
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen