You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.
$ bundle exec reel-rack
I, [2015-09-14T18:45:13.747559 #4193] INFO -- : Celluloid 0.17.1.2 is running in BACKPORTED mode. [ http://git.io/vJf3J ]
/tmp/foo/vendor/bundle/ruby/2.2.0/gems/celluloid-supervision-0.20.1.1/lib/celluloid/supervision/deprecate/supervise.rb:54:in `router': undefined method `services' for Celluloid:Module (NoMethodError)
from /tmp/foo/vendor/bundle/ruby/2.2.0/gems/celluloid-supervision-0.20.1.1/lib/celluloid/supervision/deprecate/supervise.rb:11:in `supervise_as'
from /tmp/foo/vendor/bundle/ruby/2.2.0/gems/celluloid-supervision-0.20.1.1/lib/celluloid/supervision/deprecate/supervise.rb:24:in `supervise_as'
from /tmp/foo/vendor/bundle/ruby/2.2.0/bundler/gems/reel-rack-2edd5ff371a9/lib/rack/handler/reel.rb:18:in `run'
from /tmp/foo/vendor/bundle/ruby/2.2.0/bundler/gems/reel-rack-2edd5ff371a9/lib/reel/rack/cli.rb:47:in `run'
from /tmp/foo/vendor/bundle/ruby/2.2.0/bundler/gems/reel-rack-2edd5ff371a9/bin/reel-rack:5:in `<top (required)>'
from /tmp/foo/vendor/bundle/ruby/2.2.0/bin/reel-rack:23:in `load'
from /tmp/foo/vendor/bundle/ruby/2.2.0/bin/reel-rack:23:in `<main>'
works fine with gem 'celluloid', '< 0.17' in the Gemfile
The text was updated successfully, but these errors were encountered:
Indeed. I got this error when trying Gollum, which uses reel-rack. Adding require 'celluloid/current' as first line to /lib/rack/handler/reel.rb fixed the error for me.
The very basic example in the wiki won't work with celluloid 0.17
config.ru
looks like:Gemfile
when I run it:
works fine with
gem 'celluloid', '< 0.17'
in theGemfile
The text was updated successfully, but these errors were encountered: