File tree Expand file tree Collapse file tree 5 files changed +3
-196
lines changed
Expand file tree Collapse file tree 5 files changed +3
-196
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ group :test do
1616end
1717
1818group :webservers do
19- gem 'reel' , '~> 0.5.0'
2019 gem 'http' , '~> 0.6.0'
21- gem 'celluloid' , '0.17.4' # Refactors in 0.18.0 break the tests
2220 gem 'httpkit' , :platform => [ :mri , :rbx ]
2321end
2422
Original file line number Diff line number Diff line change 11### Adapters
22
3- Webmachine includes adapters for [ WEBrick] [ webrick ] , [ Reel ] [ reel ] , and
3+ Webmachine includes adapters for [ WEBrick] [ webrick ] , and
44[ HTTPkit] [ httpkit ] . Additionally, the [ Rack] [ rack ] adapter lets it
55run on any webserver that provides a Rack interface. It also lets it run on
66[ Shotgun] [ shotgun ] ([ example] [ shotgun_example ] ).
@@ -26,13 +26,12 @@ See the [Rack Adapter API docs][rack-adapter-api-docs] for more information.
2626
2727#### A Note about MRI 1.9
2828
29- The [ Reel ] [ reel ] and [ HTTPkit] [ httpkit ]
30- adapters might crash with a ` SystemStackError ` on MRI 1.9 due to its
29+ The [ HTTPkit] [ httpkit ]
30+ adapter might crash with a ` SystemStackError ` on MRI 1.9 due to its
3131limited fiber stack size. If your application is affected by this, the
3232only known solution is to switch to JRuby, Rubinius or MRI 2.0.
3333
3434[ webrick ] : http://rubydoc.info/stdlib/webrick
35- [ reel ] : https://github.com/celluloid/reel
3635[ httpkit ] : https://github.com/lgierth/httpkit
3736[ rack ] : https://github.com/rack/rack
3837[ shotgun ] : https://github.com/rtomayko/shotgun
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ module Webmachine
55 # Contains classes and modules that connect Webmachine to Ruby
66 # application servers.
77 module Adapters
8- autoload :Reel , 'webmachine/adapters/reel'
98 autoload :HTTPkit , 'webmachine/adapters/httpkit'
109 end
1110end
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments