Skip to content

Commit

Permalink
Add json to requirements. Fix for Rack::File collision.
Browse files Browse the repository at this point in the history
  • Loading branch information
perplexes committed Jul 21, 2010
1 parent e7d0a71 commit 29282ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -39,6 +39,7 @@ Installation
* [FFI](http://github.com/ffi/ffi), `gem install ffi` should be fine. * [FFI](http://github.com/ffi/ffi), `gem install ffi` should be fine.
* [Zero MQ](http://www.zeromq.org/area:download), you'll need to compile and install to get the headers and such for: * [Zero MQ](http://www.zeromq.org/area:download), you'll need to compile and install to get the headers and such for:
* [ffi-rzmq](http://github.com/chuckremes/ffi-rzmq), which you'll have to build. The native zmq didn't work for me, but if you want to fix it, please do! * [ffi-rzmq](http://github.com/chuckremes/ffi-rzmq), which you'll have to build. The native zmq didn't work for me, but if you want to fix it, please do!
* [json](http://github.com/genki/json), since the headers are returned in JSON, which is RAD. (Really Awesome, Dude)
* Rack `gem install rack` if you want to run the rack example. * Rack `gem install rack` if you want to run the rack example.


Booby Traps Booby Traps
Expand Down
2 changes: 1 addition & 1 deletion example/rack_handler.rb
Expand Up @@ -5,7 +5,7 @@
# Debugger.start # Debugger.start
# gem install ruby-debug19 -- --with-ruby-include=$HOME/.rvm/src/ruby-1.9.2-head # gem install ruby-debug19 -- --with-ruby-include=$HOME/.rvm/src/ruby-1.9.2-head


$: << File.expand_path(File.dirname(__FILE__) + '/..') $: << ::File.expand_path(::File.dirname(__FILE__) + '/..')
require 'connection' require 'connection'


$sender_id = "70D107AB-19F5-44AE-A2D0-2326A167D8D7" $sender_id = "70D107AB-19F5-44AE-A2D0-2326A167D8D7"
Expand Down

0 comments on commit 29282ba

Please sign in to comment.