Module: Devise::Generators::ViewPathTemplates

Extended by:
ActiveSupport::Concern
Included in:
ErbGenerator, FormForGenerator, MarkerbGenerator, SharedViewsGenerator, SimpleFormForGenerator
Defined in:
lib/generators/devise/views_generator.rb

Overview

Include this module in your generator to generate Devise views. ‘copy_views` is the main method and by default copies all views with forms.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#copy_viewsObject



31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/generators/devise/views_generator.rb', line 31

def copy_views
  if options[:views]
    options[:views].each do |directory|
      view_directory directory.to_sym
    end
  else
    view_directory :confirmations
    view_directory :passwords
    view_directory :registrations
    view_directory :sessions
    view_directory :unlocks
  end
end

#target_pathObject (protected)



57
58
59
# File 'lib/generators/devise/views_generator.rb', line 57

def target_path
  @target_path ||= "app/views/#{scope || :devise}"
end

#view_directory(name, _target_path = nil) ⇒ Object (protected)



47
48
49
50
51
52
53
54
55
# File 'lib/generators/devise/views_generator.rb', line 47

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