ftw 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +12 -1
  2. data/lib/ftw/version.rb +1 -1
  3. 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' somehow.
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
@@ -1,5 +1,5 @@
1
1
  require "ftw/namespace"
2
2
 
3
3
  module FTW
4
- VERSION = "0.0.5"
4
+ VERSION = "0.0.6"
5
5
  end
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.5
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-13 00:00:00.000000000 Z
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.