drag_drop_example
drag_drop_example copied to clipboard
Rackup can't find 'app'
For me rackup was unable to find 'app' (ruby 1.9.2) So in config.ru I replaced require 'app' with require File.expand_path(File.dirname(FILE) + '/app')
Now works :-)
Thanks! I'll keep this open for the time being in case anyone else runs into the issue.
Actually you can use: require './app'
ruby 1.9 does not add the . to the path
@ddacunha thanks that's a lot more elegant than my solution
Good call! I'll add this in.