ruby-clock 0.8.0.rc3 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +13 -5
  4. data/README.md +43 -11
  5. data/example-app/Gemfile.lock +1 -1
  6. data/example-app/README.md +1 -1
  7. data/example-rails-app/.gitattributes +9 -0
  8. data/example-rails-app/.gitignore +35 -0
  9. data/example-rails-app/.ruby-version +1 -0
  10. data/example-rails-app/Clockfile +19 -0
  11. data/example-rails-app/Gemfile +74 -0
  12. data/example-rails-app/README.md +12 -0
  13. data/example-rails-app/Rakefile +6 -0
  14. data/example-rails-app/app/assets/config/manifest.js +4 -0
  15. data/example-rails-app/app/assets/images/.keep +0 -0
  16. data/example-rails-app/app/assets/stylesheets/application.css +15 -0
  17. data/example-rails-app/app/channels/application_cable/channel.rb +4 -0
  18. data/example-rails-app/app/channels/application_cable/connection.rb +4 -0
  19. data/example-rails-app/app/controllers/application_controller.rb +2 -0
  20. data/example-rails-app/app/controllers/concerns/.keep +0 -0
  21. data/example-rails-app/app/helpers/application_helper.rb +2 -0
  22. data/example-rails-app/app/javascript/application.js +3 -0
  23. data/example-rails-app/app/javascript/controllers/application.js +9 -0
  24. data/example-rails-app/app/javascript/controllers/hello_controller.js +7 -0
  25. data/example-rails-app/app/javascript/controllers/index.js +11 -0
  26. data/example-rails-app/app/jobs/application_job.rb +7 -0
  27. data/example-rails-app/app/mailers/application_mailer.rb +4 -0
  28. data/example-rails-app/app/models/application_record.rb +3 -0
  29. data/example-rails-app/app/models/concerns/.keep +0 -0
  30. data/example-rails-app/app/models/example.rb +2 -0
  31. data/example-rails-app/app/views/layouts/application.html.erb +16 -0
  32. data/example-rails-app/app/views/layouts/mailer.html.erb +13 -0
  33. data/example-rails-app/app/views/layouts/mailer.text.erb +1 -0
  34. data/example-rails-app/bin/bundle +114 -0
  35. data/example-rails-app/bin/importmap +4 -0
  36. data/example-rails-app/bin/rails +4 -0
  37. data/example-rails-app/bin/rake +4 -0
  38. data/example-rails-app/bin/setup +33 -0
  39. data/example-rails-app/config/application.rb +22 -0
  40. data/example-rails-app/config/boot.rb +4 -0
  41. data/example-rails-app/config/cable.yml +11 -0
  42. data/example-rails-app/config/credentials.yml.enc +1 -0
  43. data/example-rails-app/config/database.yml +25 -0
  44. data/example-rails-app/config/environment.rb +5 -0
  45. data/example-rails-app/config/environments/development.rb +70 -0
  46. data/example-rails-app/config/environments/production.rb +93 -0
  47. data/example-rails-app/config/environments/test.rb +60 -0
  48. data/example-rails-app/config/importmap.rb +7 -0
  49. data/example-rails-app/config/initializers/assets.rb +12 -0
  50. data/example-rails-app/config/initializers/content_security_policy.rb +25 -0
  51. data/example-rails-app/config/initializers/filter_parameter_logging.rb +8 -0
  52. data/example-rails-app/config/initializers/inflections.rb +16 -0
  53. data/example-rails-app/config/initializers/permissions_policy.rb +11 -0
  54. data/example-rails-app/config/locales/en.yml +33 -0
  55. data/example-rails-app/config/puma.rb +43 -0
  56. data/example-rails-app/config/routes.rb +6 -0
  57. data/example-rails-app/config/storage.yml +34 -0
  58. data/example-rails-app/config.ru +6 -0
  59. data/example-rails-app/db/migrate/20221001175928_create_examples.rb +8 -0
  60. data/example-rails-app/db/schema.rb +19 -0
  61. data/example-rails-app/db/seeds.rb +7 -0
  62. data/example-rails-app/lib/assets/.keep +0 -0
  63. data/example-rails-app/lib/tasks/.keep +0 -0
  64. data/example-rails-app/log/.keep +0 -0
  65. data/example-rails-app/public/404.html +67 -0
  66. data/example-rails-app/public/422.html +67 -0
  67. data/example-rails-app/public/500.html +66 -0
  68. data/example-rails-app/public/apple-touch-icon-precomposed.png +0 -0
  69. data/example-rails-app/public/apple-touch-icon.png +0 -0
  70. data/example-rails-app/public/favicon.ico +0 -0
  71. data/example-rails-app/public/robots.txt +1 -0
  72. data/example-rails-app/storage/.keep +0 -0
  73. data/example-rails-app/test/application_system_test_case.rb +5 -0
  74. data/example-rails-app/test/channels/application_cable/connection_test.rb +11 -0
  75. data/example-rails-app/test/controllers/.keep +0 -0
  76. data/example-rails-app/test/fixtures/files/.keep +0 -0
  77. data/example-rails-app/test/helpers/.keep +0 -0
  78. data/example-rails-app/test/integration/.keep +0 -0
  79. data/example-rails-app/test/mailers/.keep +0 -0
  80. data/example-rails-app/test/models/.keep +0 -0
  81. data/example-rails-app/test/system/.keep +0 -0
  82. data/example-rails-app/test/test_helper.rb +13 -0
  83. data/example-rails-app/tmp/.keep +0 -0
  84. data/example-rails-app/tmp/pids/.keep +0 -0
  85. data/example-rails-app/tmp/storage/.keep +0 -0
  86. data/example-rails-app/vendor/.keep +0 -0
  87. data/example-rails-app/vendor/javascript/.keep +0 -0
  88. data/exe/clock +6 -0
  89. data/lib/ruby-clock/version.rb +1 -1
  90. data/lib/ruby-clock.rb +1 -1
  91. metadata +84 -4
  92. data/Gemfile.lock +0 -33
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e8d972bb2c2468f53d943f233e4e799df71a449b6f7b8c00a1ddbea33c54c92
4
- data.tar.gz: fc97259d0575bd220f79dd25206128001eece56ec51eda06d95f28d718b65080
3
+ metadata.gz: 567b66555b094f4c722a3340b9cc5ca99abab18918033ed972dc8c65ce242b18
4
+ data.tar.gz: 2c9a42194dcd969623b04b1bfc21eb327cdd225322703a488f87fa1819a9302c
5
5
  SHA512:
6
- metadata.gz: 6dcf79cbebb137a9f04e920b8d6ff0f910bd61536e3e666297217aef8d9942c656fca0d67d794c753ab42a9e035be364bcf3d3b6e465058ebfe7e8683fa94fea
7
- data.tar.gz: a3ca20e788af53d77d5526aaacb3b7ff4b07e8852e7586fe181e1681985b32b5bce3a9f0a305507be335dfeee7399567a6cd31afe8262b6e0b84db9cd2d9a75a
6
+ metadata.gz: 0cdd8a85ec8f8de256486f027639c9d4c341131eb7dc88d519baf249733c7c655f72af923b8c8914b51d405f09a24cd9aa17efc4fc96cf807dcacdd74b024878
7
+ data.tar.gz: e655dce4688f88154bac50957fb321f11e07dc7d40ee5fc679a25d0e0a8feff097016ac7df128e77f4eaccae5e3fa817caa76d5a300bee364e48999bd4c0ea50
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ Gemfile.lock
1
2
  /.bundle/
2
3
  /.yardoc
3
4
  /_yardoc/
data/CHANGELOG.md CHANGED
@@ -1,13 +1,21 @@
1
- ## 0.8.0 RC3
1
+ ## 2.0.0.beta1
2
2
 
3
- * make terrapin and posix-spawn gems optional
3
+ * The way the [rails app reloader](https://guides.rubyonrails.org/threading_and_code_execution.html)
4
+ is implemented is now compatible with both rails 6 and 7
5
+ * The setup for rails is now less complicated
4
6
 
5
- ## 0.8.0 RC2
7
+ ### Migrating from ruby-clock version 1 to version 2
6
8
 
7
- * fix detection of Rails constant, for non-rails apps
9
+ * There is no longer a need to have a binstub in rails. You can delete bin/clock from your app.
10
+ * The invocations (in Procfile, or wherever else you start ruby-clock) should change from
11
+ bundle exec rails runner bin/clock
12
+ to
13
+ bundle exec clock
8
14
 
9
- ## 0.8.0 RC1
15
+ ## 1.0.0
10
16
 
17
+ * make terrapin and posix-spawn gems optional
18
+ * fix detection of Rails constant, for non-rails apps
11
19
  * automatically wrap jobs with rails reloader
12
20
  * ability to run rake tasks
13
21
  * ability to run shell commands
data/README.md CHANGED
@@ -4,6 +4,10 @@ ruby-clock is a [job scheduler](https://en.wikipedia.org/wiki/Job_scheduler),
4
4
  known by heroku as a [clock process](https://devcenter.heroku.com/articles/scheduled-jobs-custom-clock-processes).
5
5
  In many cases it can replace the use of cron.
6
6
 
7
+ Why another ruby scheduler project? See
8
+ [this feature matrix of the space](https://docs.google.com/spreadsheets/d/148VMKY9iyOyUASYytSGiUJKvH0-O5Ri-3Cwr3S6DRPU/edit?usp=sharing).
9
+ Feel free to leave a comment with suggestions for changes or additions.
10
+
7
11
  This gem is very small with very few lines of code. For all its scheduling capabilities,
8
12
  it relies on the venerable [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler/).
9
13
  rufus-scheduler
@@ -12,8 +16,8 @@ ruby-clock does.
12
16
 
13
17
  Jobs are all run in their own parallel threads within the same process.
14
18
 
15
- The clock process will respond to signals INT (^c at the command line) and
16
- TERM (signal sent by environments such as Heroku and other PaaS's when shutting down).
19
+ The clock process will respond to signals `INT` (<kbd>^c</kbd> at the command line) and
20
+ `TERM` (signal sent by environments such as Heroku and other PaaS's when shutting down).
17
21
  In both cases, the clock will stop running jobs and give existing jobs 29 seconds
18
22
  to stop before killing them.
19
23
  You can change this number with `RUBY_CLOCK_SHUTDOWN_WAIT_SECONDS` in the environment.
@@ -63,19 +67,31 @@ This will ignore Clockfile and only read jobs from clocks/MyClockfile:
63
67
 
64
68
  ### Rails
65
69
 
66
- Install the `clock` binstub and commit to your repo.
67
-
68
- bundle binstubs ruby-clock
69
-
70
70
  To run your clock process in your app's environment:
71
71
 
72
- bundle exec rails runner bin/clock
72
+ bundle exec clock
73
73
 
74
74
  To get smarter database connection management (such as in the case of a database restart or upgrade,
75
75
  and maybe other benefits) and code reloading in dev (app code, not the code in Clockfile itself),
76
76
  jobs are automatically wrapped in the
77
77
  [rails app reloader](https://guides.rubyonrails.org/threading_and_code_execution.html).
78
+ This [may incur a performance impact for certain jobs](https://github.com/rails/rails/issues/43504),
79
+ I'm still exploring this.
80
+
78
81
 
82
+ #### ActiveRecord Query Cache
83
+
84
+ You may wish to
85
+ [turn off the ActiveRecord Query Cache](https://code.jjb.cc/turning-off-activerecord-query-cache-to-improve-memory-consumption-in-background-jobs)
86
+ for your jobs. You can do so with the around trigger:
87
+
88
+ ```ruby
89
+ def schedule.around_trigger(job)
90
+ ActiveRecord::Base.uncached do
91
+ yield
92
+ end
93
+ end
94
+ ```
79
95
 
80
96
  ### Non-Rails
81
97
 
@@ -92,7 +108,7 @@ schedule.every('5 minutes') do
92
108
  Add this line to your Procfile
93
109
 
94
110
  ```
95
- clock: bundle exec rails runner bin/clock
111
+ clock: bundle exec clock
96
112
  ```
97
113
 
98
114
  You might have a main clock for general scheduled jobs, and then standalone ones
@@ -101,9 +117,9 @@ for that work more precisely. Here, maybe the main clock needs a 2GB instance,
101
117
  and the others each need 1GB all to themselves:
102
118
 
103
119
  ```
104
- clock: bundle exec rails runner bin/clock
105
- thing_checker: bundle exec rails runner bin/clock clocks/thing_checker.rb
106
- thing_reporter: bundle exec rails runner bin/clock clocks/thing_reporter.rb
120
+ clock: bundle exec clock
121
+ thing_checker: bundle exec clock clocks/thing_checker.rb
122
+ thing_reporter: bundle exec clock clocks/thing_reporter.rb
107
123
  ```
108
124
 
109
125
  Because of this feature, do I regret using "Clockfile" instead of, say, "clock.rb"? Maybe.
@@ -165,6 +181,22 @@ schedule.every '1 day' do
165
181
  end
166
182
  ```
167
183
 
184
+ #### shutdown behavior
185
+
186
+ Because of [this](https://stackoverflow.com/questions/69653842/),
187
+ if a shell job is running during shutdown, shutdown behavior seems to be changed
188
+ for _all_ running jobs - they no longer are allowed to finish within the timeout period.
189
+ Everything exits immediately.
190
+
191
+ Until this is figured out, if you are concerned about jobs exiting inelegantly,
192
+ you may want to run your shell jobs in their own separate clock process.
193
+
194
+ ```
195
+ bundle exec clock clocks/main_jobs.rb
196
+ bundle exec clock clocks/shell_jobs.rb
197
+ ```
198
+
199
+
168
200
  ### Rake tasks
169
201
 
170
202
  You can run tasks from within the persistent runtime of ruby-clock, without
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- ruby-clock (0.8.0.rc2)
4
+ ruby-clock (0.8.0.rc3)
5
5
  method_source
6
6
  rufus-scheduler (~> 3.8)
7
7
 
@@ -5,5 +5,5 @@ To run:
5
5
 
6
6
  ```
7
7
  bundle
8
- bundle exe clock
8
+ bundle exec clock
9
9
  ```
@@ -0,0 +1,9 @@
1
+ # See https://git-scm.com/docs/gitattributes for more about git attribute files.
2
+
3
+ # Mark the database schema as having been generated.
4
+ db/schema.rb linguist-generated
5
+
6
+ # Mark any vendored files as having been vendored.
7
+ vendor/* linguist-vendored
8
+
9
+ Clockfile linguist-language=Ruby
@@ -0,0 +1,35 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-*
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ # Ignore pidfiles, but keep the directory.
21
+ /tmp/pids/*
22
+ !/tmp/pids/
23
+ !/tmp/pids/.keep
24
+
25
+ # Ignore uploaded files in development.
26
+ /storage/*
27
+ !/storage/.keep
28
+ /tmp/storage/*
29
+ !/tmp/storage/
30
+ !/tmp/storage/.keep
31
+
32
+ /public/assets
33
+
34
+ # Ignore master key for decrypting credentials and more.
35
+ /config/master.key
@@ -0,0 +1 @@
1
+ 2.7.5
@@ -0,0 +1,19 @@
1
+ def schedule.on_error(job, error)
2
+ puts "An error has occurred: #{error.class}: #{error.message}"
3
+ end
4
+
5
+ schedule.every('2 seconds') do
6
+ puts "hello from a ruby-clock job"
7
+ end
8
+
9
+ schedule.every('2 seconds') do
10
+ shell 'say hello'
11
+ end
12
+
13
+ schedule.every('2 seconds') do
14
+ puts Example.count
15
+ end
16
+
17
+ schedule.every('2 seconds') do
18
+ raise "An error."
19
+ end
@@ -0,0 +1,74 @@
1
+ source "https://rubygems.org"
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ ruby "2.7.5"
5
+
6
+ gem 'ruby-clock', path: '../'
7
+
8
+ # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
9
+ gem "rails", "~> 7.0.4"
10
+
11
+ # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
12
+ gem "sprockets-rails"
13
+
14
+ # Use sqlite3 as the database for Active Record
15
+ gem "sqlite3", "~> 1.4"
16
+
17
+ # Use the Puma web server [https://github.com/puma/puma]
18
+ gem "puma", "~> 5.0"
19
+
20
+ # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
21
+ gem "importmap-rails"
22
+
23
+ # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
24
+ gem "turbo-rails"
25
+
26
+ # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
27
+ gem "stimulus-rails"
28
+
29
+ # Build JSON APIs with ease [https://github.com/rails/jbuilder]
30
+ gem "jbuilder"
31
+
32
+ # Use Redis adapter to run Action Cable in production
33
+ gem "redis", "~> 4.0"
34
+
35
+ # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
36
+ # gem "kredis"
37
+
38
+ # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
39
+ # gem "bcrypt", "~> 3.1.7"
40
+
41
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42
+ gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
43
+
44
+ # Reduces boot times through caching; required in config/boot.rb
45
+ gem "bootsnap", require: false
46
+
47
+ # Use Sass to process CSS
48
+ # gem "sassc-rails"
49
+
50
+ # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
51
+ # gem "image_processing", "~> 1.2"
52
+
53
+ group :development, :test do
54
+ # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
55
+ gem "debug", platforms: %i[ mri mingw x64_mingw ]
56
+ end
57
+
58
+ group :development do
59
+ # Use console on exceptions pages [https://github.com/rails/web-console]
60
+ gem "web-console"
61
+
62
+ # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
63
+ # gem "rack-mini-profiler"
64
+
65
+ # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
66
+ # gem "spring"
67
+ end
68
+
69
+ group :test do
70
+ # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
71
+ gem "capybara"
72
+ gem "selenium-webdriver"
73
+ gem "webdrivers"
74
+ end
@@ -0,0 +1,12 @@
1
+ This is a bare-bones example rails 7 app to
2
+ help with dev and also as an example for users.
3
+
4
+ The only interesting thing is in Clockfile
5
+
6
+ To run:
7
+
8
+ ```
9
+ bundle
10
+ bundle exec rails db:migrate
11
+ bundle exec rails runner bin/clock
12
+ ```
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require_relative "config/application"
5
+
6
+ Rails.application.load_tasks
@@ -0,0 +1,4 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../stylesheets .css
3
+ //= link_tree ../../javascript .js
4
+ //= link_tree ../../../vendor/javascript .js
File without changes
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
6
+ * vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Channel < ActionCable::Channel::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Connection < ActionCable::Connection::Base
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationController < ActionController::Base
2
+ end
File without changes
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,3 @@
1
+ // Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails
2
+ import "@hotwired/turbo-rails"
3
+ import "controllers"
@@ -0,0 +1,9 @@
1
+ import { Application } from "@hotwired/stimulus"
2
+
3
+ const application = Application.start()
4
+
5
+ // Configure Stimulus development experience
6
+ application.debug = false
7
+ window.Stimulus = application
8
+
9
+ export { application }
@@ -0,0 +1,7 @@
1
+ import { Controller } from "@hotwired/stimulus"
2
+
3
+ export default class extends Controller {
4
+ connect() {
5
+ this.element.textContent = "Hello World!"
6
+ }
7
+ }
@@ -0,0 +1,11 @@
1
+ // Import and register all your controllers from the importmap under controllers/*
2
+
3
+ import { application } from "controllers/application"
4
+
5
+ // Eager load all controllers defined in the import map under controllers/**/*_controller
6
+ import { eagerLoadControllersFrom } from "@hotwired/stimulus-loading"
7
+ eagerLoadControllersFrom("controllers", application)
8
+
9
+ // Lazy load controllers as they appear in the DOM (remember not to preload controllers in import map!)
10
+ // import { lazyLoadControllersFrom } from "@hotwired/stimulus-loading"
11
+ // lazyLoadControllersFrom("controllers", application)
@@ -0,0 +1,7 @@
1
+ class ApplicationJob < ActiveJob::Base
2
+ # Automatically retry jobs that encountered a deadlock
3
+ # retry_on ActiveRecord::Deadlocked
4
+
5
+ # Most jobs are safe to ignore if the underlying records are no longer available
6
+ # discard_on ActiveJob::DeserializationError
7
+ end
@@ -0,0 +1,4 @@
1
+ class ApplicationMailer < ActionMailer::Base
2
+ default from: "from@example.com"
3
+ layout "mailer"
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ primary_abstract_class
3
+ end
File without changes
@@ -0,0 +1,2 @@
1
+ class Example < ApplicationRecord
2
+ end
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>ExampleRailsApp</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <%= csrf_meta_tags %>
7
+ <%= csp_meta_tag %>
8
+
9
+ <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
10
+ <%= javascript_importmap_tags %>
11
+ </head>
12
+
13
+ <body>
14
+ <%= yield %>
15
+ </body>
16
+ </html>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <style>
6
+ /* Email styles need to be inline */
7
+ </style>
8
+ </head>
9
+
10
+ <body>
11
+ <%= yield %>
12
+ </body>
13
+ </html>
@@ -0,0 +1 @@
1
+ <%= yield %>
@@ -0,0 +1,114 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'bundle' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "rubygems"
12
+
13
+ m = Module.new do
14
+ module_function
15
+
16
+ def invoked_as_script?
17
+ File.expand_path($0) == File.expand_path(__FILE__)
18
+ end
19
+
20
+ def env_var_version
21
+ ENV["BUNDLER_VERSION"]
22
+ end
23
+
24
+ def cli_arg_version
25
+ return unless invoked_as_script? # don't want to hijack other binstubs
26
+ return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27
+ bundler_version = nil
28
+ update_index = nil
29
+ ARGV.each_with_index do |a, i|
30
+ if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
31
+ bundler_version = a
32
+ end
33
+ next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34
+ bundler_version = $1
35
+ update_index = i
36
+ end
37
+ bundler_version
38
+ end
39
+
40
+ def gemfile
41
+ gemfile = ENV["BUNDLE_GEMFILE"]
42
+ return gemfile if gemfile && !gemfile.empty?
43
+
44
+ File.expand_path("../../Gemfile", __FILE__)
45
+ end
46
+
47
+ def lockfile
48
+ lockfile =
49
+ case File.basename(gemfile)
50
+ when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
51
+ else "#{gemfile}.lock"
52
+ end
53
+ File.expand_path(lockfile)
54
+ end
55
+
56
+ def lockfile_version
57
+ return unless File.file?(lockfile)
58
+ lockfile_contents = File.read(lockfile)
59
+ return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60
+ Regexp.last_match(1)
61
+ end
62
+
63
+ def bundler_requirement
64
+ @bundler_requirement ||=
65
+ env_var_version || cli_arg_version ||
66
+ bundler_requirement_for(lockfile_version)
67
+ end
68
+
69
+ def bundler_requirement_for(version)
70
+ return "#{Gem::Requirement.default}.a" unless version
71
+
72
+ bundler_gem_version = Gem::Version.new(version)
73
+
74
+ requirement = bundler_gem_version.approximate_recommendation
75
+
76
+ return requirement unless Gem.rubygems_version < Gem::Version.new("2.7.0")
77
+
78
+ requirement += ".a" if bundler_gem_version.prerelease?
79
+
80
+ requirement
81
+ end
82
+
83
+ def load_bundler!
84
+ ENV["BUNDLE_GEMFILE"] ||= gemfile
85
+
86
+ activate_bundler
87
+ end
88
+
89
+ def activate_bundler
90
+ gem_error = activation_error_handling do
91
+ gem "bundler", bundler_requirement
92
+ end
93
+ return if gem_error.nil?
94
+ require_error = activation_error_handling do
95
+ require "bundler/version"
96
+ end
97
+ return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
98
+ warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
99
+ exit 42
100
+ end
101
+
102
+ def activation_error_handling
103
+ yield
104
+ nil
105
+ rescue StandardError, LoadError => e
106
+ e
107
+ end
108
+ end
109
+
110
+ m.load_bundler!
111
+
112
+ if m.invoked_as_script?
113
+ load Gem.bin_path("bundler", "bundle")
114
+ end
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative "../config/application"
4
+ require "importmap/commands"
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path("../config/application", __dir__)
3
+ require_relative "../config/boot"
4
+ require "rails/commands"
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative "../config/boot"
3
+ require "rake"
4
+ Rake.application.run
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+ require "fileutils"
3
+
4
+ # path to your application root.
5
+ APP_ROOT = File.expand_path("..", __dir__)
6
+
7
+ def system!(*args)
8
+ system(*args) || abort("\n== Command #{args} failed ==")
9
+ end
10
+
11
+ FileUtils.chdir APP_ROOT do
12
+ # This script is a way to set up or update your development environment automatically.
13
+ # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14
+ # Add necessary setup steps to this file.
15
+
16
+ puts "== Installing dependencies =="
17
+ system! "gem install bundler --conservative"
18
+ system("bundle check") || system!("bundle install")
19
+
20
+ # puts "\n== Copying sample files =="
21
+ # unless File.exist?("config/database.yml")
22
+ # FileUtils.cp "config/database.yml.sample", "config/database.yml"
23
+ # end
24
+
25
+ puts "\n== Preparing database =="
26
+ system! "bin/rails db:prepare"
27
+
28
+ puts "\n== Removing old logs and tempfiles =="
29
+ system! "bin/rails log:clear tmp:clear"
30
+
31
+ puts "\n== Restarting application server =="
32
+ system! "bin/rails restart"
33
+ end