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
- #copy_views ⇒ Object
- #plural_scope ⇒ Object protected
- #target_path ⇒ Object protected
- #view_directory(name, _target_path = nil) ⇒ Object protected
Instance Method Details
#copy_views ⇒ Object
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 [:views] [: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 |
#plural_scope ⇒ Object (protected)
61 62 63 |
# File 'lib/generators/devise/views_generator.rb', line 61 def plural_scope @plural_scope ||= scope.presence && scope.underscore.pluralize end |
#target_path ⇒ Object (protected)
57 58 59 |
# File 'lib/generators/devise/views_generator.rb', line 57 def target_path @target_path ||= "app/views/#{plural_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", "#{plural_scope}/shared/links" else content end end end |