I recently upgraded to Ruby 1.9.2 (RVM), Sinatra 1.1, and Passenger 3.0.0. I have a simple application consisting of:
# config.ru require 'rubygems' require 'sinatra' require 'app.rb' run Sinatra::Application
If I run the application from the terminal using ruby app.rb , everything starts as expected. However, with Passenger I get: no such file to load -- app.rb I have other Rails applications that work fine with customization, and have configured the document root to a secondary shared directory. Any ideas how to fix this? Thanks!
passenger sinatra
Kevin sylvestre
source share