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.
- checksums.yaml +8 -8
- data/README.md +8 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NmE3YjE4ZmU3OTc3YmUwMzdmM2M0YjNlOGE0YTg2YWRhMTQwZjAwNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTY0YTZjMjhhYzkwMzRjYmRiZjRlYmJiNmNjMDhjZDgyNDFhNzgxNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MGNiMmQ0NWYwNzAyZWY0NWVlZDZlMzQwMjJkOGYzMTdiNTAyMzA2Yzc1NDgy
|
10
|
+
OGZmMjllMmQwYjVhNTI4MjhkZmM0OTJjMDZlMzI5ZTZjZjk3MGIzYWVjMzM3
|
11
|
+
NzM5Y2I2YTFkYjgzYzc0NWZjNjFiMDMwNDMyMWRmZWY5ZWM4OTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
-
|
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
|
-
|
22
|
+
Included processors can handle:
|
23
23
|
|
24
|
-
*
|
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
|
|