I might be missing something but how can I map "/" in Rails to execute the Sinatra application? I have:
class Core < Sinatra::Base
get '/' do
"This is root but it is caput."
end
get '/test' do
"This is test and it works"
end
end
So if I do routing like that:
match '/test' => Core
match '/'=>Core
only '/test' fires Sinatra app '/' runs the Rails. Actually I want every route to be handled by Sinatra app.
index.htmlfrom the public folder? :) – padde Jul 7 '12 at 7:17