Second one is not working too.
Missing partial testing/index with {:locale=>[:sl], :formats=>[:html],
:handlers=>[:erb, :builder, :coffee]}. Searched in:
* "/wwww/rails/testapp/app/views"
Rails version doesn't matter to me because I only send code for 3.2
but that aside since it's not working with the first put it into a
before_filter method or you can just provide before_filter with a
proc/block.
MyController < ApplicationController
before_filter {
prepend_view_path(Rails.root.join("vendor/myapp/views/myctrl").to_s)
}
end
Second one is not working too. Missing partial testing/index
__SNIP__
"/wwww/rails/testapp/vendor/ruby/1.9.1/gems/kaminari-0.14.1/app/views"
althow debuging shows that path is added to config.paths["app/views"]
Actually, it shows that the path is not being added because I forgot
to join the paths. Added is subjective of course, it's there it's
just not there properly which to me it is not there because it's not
the intended behavior it should be:
The to_s might not be needed, I don't quite remember if Rails will
work with Pathname on app/views or if it expects a string, but based
on it's output I would expect it to always want to work with a string.
The to\_s might not be needed, I don't quite remember if Rails will
work with Pathname on app/views or if it expects a string, but based
on it's output I would expect it to always want to work with a string\.
Thanks. It works now.
It looks that path must exist to be included in the searched paths list.