This is a quick hack that can solve it. This should probably be resolved within the framework, but at least you can solve it right now so that you can continue to work:
(, bundler) ( : , "" , Padrino):
:.bundle/ruby /1.8/gems/padrino-core-0.9.19/lib/padrino-core/application/routing.rb
( ):
def route
match.matched? ? match.path.route : nil
end
(, )
def route
(!match.nil? && match.matched?) ? match.path.route : nil
end
!