require “<%= config %>/view”

module <%= config %>

module Views
  class Welcome < <%= config[:camel_cased_app_name] %>::View
    configure do |config|
      config.template = "welcome"
    end
  end
end

end