class Dry::Web::Roda::Generators::FlatProject

Public Instance Methods

populate_templates() click to toggle source
# File lib/dry/web/roda/generators/flat_project.rb, line 9
def populate_templates
  super
  add_views
  add_web
end

Private Instance Methods

add_application() click to toggle source
# File lib/dry/web/roda/generators/flat_project.rb, line 21
def add_application
  add_template("flat_project/web.rb.tt", "system/#{underscored_project_name}/web.rb")
end
add_boot() click to toggle source
# File lib/dry/web/roda/generators/flat_project.rb, line 17
def add_boot
  add_template("flat_project/boot.rb.tt", "system/boot.rb")
end
add_views() click to toggle source
# File lib/dry/web/roda/generators/flat_project.rb, line 25
def add_views
  add_template('welcome.rb.tt', "lib/#{underscored_project_name}/views/welcome.rb")
end
add_web() click to toggle source
# File lib/dry/web/roda/generators/flat_project.rb, line 29
def add_web
  add_template('example_routes.rb.tt', 'web/routes/example.rb')
  add_template('application.html.slim', 'web/templates/layouts/application.html.slim')
  add_template('welcome.html.slim', 'web/templates/welcome.html.slim')
end