Class: VisitCard::Generators::ViewsGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/visit_card/views/views_generator.rb

Instance Method Summary collapse

Instance Method Details

#copy_viewsObject



13
14
15
16
17
18
19
20
21
22
# File 'lib/generators/visit_card/views/views_generator.rb', line 13

def copy_views
  case options[:template_engine]
  when "haml"
    verify_haml_existence
    verify_haml_version
    create_and_copy_haml_views
  else
    directory "vcards", "app/views/#{scope || :vcards}"
  end
end