module Devise::I18n::ViewPathTemplates

def view_directory(name, target_path = nil)

def view_directory(name, target_path = nil)
  directory name.to_s, target_path || "#{default_target_path}/#{name}" do |content|
    if scope
      content.gsub "devise/shared", "#{plural_scope}/shared"
    else
      content
    end
  end
end