Rails views path gem released
Version 0.1.0
I’ve created gem which allows to add views paths in controller. I wrote about this problem in my previous post.
So just
# Gemfile
gem 'rails_views_path'
# app/controllers/users/posts_controller.rb
module Users
class PostsController < ApplicationController
add_views_path :posts
end
end
After that for each action Rails will look into app/views/users/posts/
and if view is not found, into app/views/posts/
.