initial commit
Co-authored-by: viehlieb <pf@pragma-shift.net>
This commit is contained in:
commit
4139bfd40b
73 changed files with 1747 additions and 0 deletions
0
test/dummy/app/assets/images/.keep
Normal file
0
test/dummy/app/assets/images/.keep
Normal file
1
test/dummy/app/assets/stylesheets/application.css
Normal file
1
test/dummy/app/assets/stylesheets/application.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Application styles */
|
||||
4
test/dummy/app/channels/application_cable/channel.rb
Normal file
4
test/dummy/app/channels/application_cable/channel.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module ApplicationCable
|
||||
class Channel < ActionCable::Channel::Base
|
||||
end
|
||||
end
|
||||
4
test/dummy/app/channels/application_cable/connection.rb
Normal file
4
test/dummy/app/channels/application_cable/connection.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module ApplicationCable
|
||||
class Connection < ActionCable::Connection::Base
|
||||
end
|
||||
end
|
||||
2
test/dummy/app/controllers/application_controller.rb
Normal file
2
test/dummy/app/controllers/application_controller.rb
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class ApplicationController < ActionController::Base
|
||||
end
|
||||
0
test/dummy/app/controllers/concerns/.keep
Normal file
0
test/dummy/app/controllers/concerns/.keep
Normal file
2
test/dummy/app/helpers/application_helper.rb
Normal file
2
test/dummy/app/helpers/application_helper.rb
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
module ApplicationHelper
|
||||
end
|
||||
7
test/dummy/app/jobs/application_job.rb
Normal file
7
test/dummy/app/jobs/application_job.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class ApplicationJob < ActiveJob::Base
|
||||
# Automatically retry jobs that encountered a deadlock
|
||||
# retry_on ActiveRecord::Deadlocked
|
||||
|
||||
# Most jobs are safe to ignore if the underlying records are no longer available
|
||||
# discard_on ActiveJob::DeserializationError
|
||||
end
|
||||
4
test/dummy/app/mailers/application_mailer.rb
Normal file
4
test/dummy/app/mailers/application_mailer.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
class ApplicationMailer < ActionMailer::Base
|
||||
default from: "from@example.com"
|
||||
layout "mailer"
|
||||
end
|
||||
3
test/dummy/app/models/application_record.rb
Normal file
3
test/dummy/app/models/application_record.rb
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class ApplicationRecord < ActiveRecord::Base
|
||||
primary_abstract_class
|
||||
end
|
||||
0
test/dummy/app/models/concerns/.keep
Normal file
0
test/dummy/app/models/concerns/.keep
Normal file
15
test/dummy/app/views/layouts/application.html.erb
Normal file
15
test/dummy/app/views/layouts/application.html.erb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Dummy</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<%= csrf_meta_tags %>
|
||||
<%= csp_meta_tag %>
|
||||
|
||||
<%= stylesheet_link_tag "application" %>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<%= yield %>
|
||||
</body>
|
||||
</html>
|
||||
13
test/dummy/app/views/layouts/mailer.html.erb
Normal file
13
test/dummy/app/views/layouts/mailer.html.erb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style>
|
||||
/* Email styles need to be inline */
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<%= yield %>
|
||||
</body>
|
||||
</html>
|
||||
1
test/dummy/app/views/layouts/mailer.text.erb
Normal file
1
test/dummy/app/views/layouts/mailer.text.erb
Normal file
|
|
@ -0,0 +1 @@
|
|||
<%= yield %>
|
||||
Loading…
Add table
Add a link
Reference in a new issue