I have a rails application that in turn uses sinatra app in it. I added this line to routes

mount TestApp::Application => "/test_app"

now while accessing /test_app routes it gives

TypeError (no marshal_dump is defined for class Mutex)

if ran against Ruby 1.9.2 and rails 3.2.1. Sinatra app uses mongo gem.

Now when I run this app against ruby 1.8.7 and rails 3.2.1, it gives following error

TypeError (can't dump TCPSocket)

Any help is highly appreciated.

link|improve this question

50% accept rate
Did you write both apps yourself? What do they do? – Sergio Tulentsev Feb 22 at 7:02
Yes, I did. Both app are normal application. We are reusing sinatra app that was already there. It runs fine standalone. – ducktyped Feb 22 at 7:05
can it be a problem with rack-session. I used rack-session in sinatra app use Rack::Session::Pool, :expire_after => 2592000 – ducktyped Feb 22 at 7:14
And are you trying to put mutexes and sockets into it? – Sergio Tulentsev Feb 22 at 7:16
No, I am not using any mutexes and sockets. I tried removing rack-session but no luck – ducktyped Feb 22 at 7:32
feedback

1 Answer

Assuming you've required your TestApp::Application correctly, I think your routes definition should be:

match "/test_app", :to => TestApp::Application

See Rails Routing from the Outside in for more info.

link|improve this answer
Sorry! but this would not server static content from sinatra dir. And FYI mount TestApp::Application => "/test_app" is the only way to solve static content problem. – ducktyped Feb 22 at 16:28
Seems a bit harsh... you didn't mention static content in your question. How is the above suggestion incorrect? I was under the impression that mount uses match for its routing? http://living5to9.com/2011/11/rails-routes-match-and-mount – Dan Garland Feb 23 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.