ftw 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +12 -1
- data/lib/ftw/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -61,7 +61,18 @@ I do not plan on exposing any direct means for invoking SPDY.
|
|
|
61
61
|
|
|
62
62
|
## Server API
|
|
63
63
|
|
|
64
|
-
TBD. Will likely surround 'rack'
|
|
64
|
+
TBD. Will likely surround 'rack'. Need to find out what servers actually can
|
|
65
|
+
support HTTP Upgrade.
|
|
65
66
|
|
|
66
67
|
It's possible the 'cramp' gem supports all the server-side features we need
|
|
67
68
|
(except for SPDY, I suppose, which I might be able to contribute upstream)
|
|
69
|
+
|
|
70
|
+
## Other Projects
|
|
71
|
+
|
|
72
|
+
Here are some related projects that I have no affiliation with:
|
|
73
|
+
|
|
74
|
+
* https://github.com/igrigorik/em-websocket - websocket server for eventmachine
|
|
75
|
+
* https://github.com/faye/faye - pubsub for the web (includes a websockets implementation)
|
|
76
|
+
* https://github.com/lifo/cramp - real-time web framework (async, websockets)
|
|
77
|
+
* https://github.com/igrigorik/em-http-request - HTTP client for EventMachine
|
|
78
|
+
* https://github.com/geemus/excon - http client library
|
data/lib/ftw/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ftw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-02-
|
|
12
|
+
date: 2012-02-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: For The Web. Trying to build a solid and sane API for client and server
|
|
15
15
|
web stuff. Client and Server operations for HTTP, WebSockets, SPDY, etc.
|