website/index.txt in evdispatch-0.1.0 vs website/index.txt in evdispatch-0.1.1
- old
+ new
@@ -1,22 +1,27 @@
h1. evdispatch
-h1. → 'evdispatch'
+<h4 style="float:right;padding-right:10px;">→ ‘evdispatch’</h4>
h2. What
+A library for making http requests in parallel. Uses the libev library to run
+an event loop on a background posix thread, that uses libcurls multi interface
+to issue HTTP requests.
h2. Installing
<pre syntax="ruby">sudo gem install evdispatch</pre>
h2. The basics
h2. Demonstration of usage
+<pre syntax="ruby">
+require 'rubygems'
require 'evdispatch'
# create a new dispatch loop
d = Evdispatch::Loop.new
@@ -32,20 +37,21 @@
puts response[:response_time]
puts response[:body]
# sometime later you can stop the event loop
d.stop
+</pre>
h2. Forum
"http://groups.google.com/group/evdispatch":http://groups.google.com/group/evdispatch
h2. How to submit patches
Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section "8b: Submit patch to Google Groups":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
-The trunk repository is <code>svn://rubyforge.org/var/svn/evdispatch/trunk</code> for anonymous access.
+The trunk repository is <a href="http://evdispatch.rubyforge.org/svn/trunk/">http://evdispatch.rubyforge.org/svn/trunk</a> for anonymous access.
h2. License
This code is free to use under the terms of the MIT license.