itsi 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (293) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +1535 -45
  3. data/{sandbox/itsi_itsi_file/Itsi.rb → Itsi.rb} +19 -13
  4. data/Rakefile +8 -7
  5. data/crates/itsi_error/src/lib.rs +9 -0
  6. data/crates/itsi_rb_helpers/Cargo.toml +1 -0
  7. data/crates/itsi_rb_helpers/src/heap_value.rs +18 -0
  8. data/crates/itsi_rb_helpers/src/lib.rs +34 -7
  9. data/crates/itsi_server/Cargo.toml +69 -30
  10. data/crates/itsi_server/src/lib.rs +79 -147
  11. data/crates/itsi_server/src/{body_proxy → ruby_types/itsi_body_proxy}/big_bytes.rs +10 -5
  12. data/crates/itsi_server/src/{body_proxy/itsi_body_proxy.rs → ruby_types/itsi_body_proxy/mod.rs} +22 -3
  13. data/crates/itsi_server/src/ruby_types/itsi_grpc_request.rs +147 -0
  14. data/crates/itsi_server/src/ruby_types/itsi_grpc_response.rs +19 -0
  15. data/crates/itsi_server/src/ruby_types/itsi_grpc_stream/mod.rs +216 -0
  16. data/{gems/server/ext/itsi_server/src/request/itsi_request.rs → crates/itsi_server/src/ruby_types/itsi_http_request.rs} +101 -117
  17. data/crates/itsi_server/src/{response/itsi_response.rs → ruby_types/itsi_http_response.rs} +72 -41
  18. data/crates/itsi_server/src/ruby_types/itsi_server/file_watcher.rs +225 -0
  19. data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +355 -0
  20. data/crates/itsi_server/src/ruby_types/itsi_server.rs +82 -0
  21. data/crates/itsi_server/src/ruby_types/mod.rs +55 -0
  22. data/crates/itsi_server/src/server/bind.rs +13 -5
  23. data/crates/itsi_server/src/server/byte_frame.rs +32 -0
  24. data/crates/itsi_server/src/server/cache_store.rs +74 -0
  25. data/crates/itsi_server/src/server/itsi_service.rs +172 -0
  26. data/crates/itsi_server/src/server/lifecycle_event.rs +3 -0
  27. data/crates/itsi_server/src/server/listener.rs +102 -2
  28. data/crates/itsi_server/src/server/middleware_stack/middleware.rs +153 -0
  29. data/crates/itsi_server/src/server/middleware_stack/middlewares/allow_list.rs +47 -0
  30. data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_api_key.rs +58 -0
  31. data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_basic.rs +82 -0
  32. data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +321 -0
  33. data/crates/itsi_server/src/server/middleware_stack/middlewares/cache_control.rs +139 -0
  34. data/crates/itsi_server/src/server/middleware_stack/middlewares/compression.rs +300 -0
  35. data/crates/itsi_server/src/server/middleware_stack/middlewares/cors.rs +287 -0
  36. data/crates/itsi_server/src/server/middleware_stack/middlewares/deny_list.rs +48 -0
  37. data/crates/itsi_server/src/server/middleware_stack/middlewares/error_response.rs +127 -0
  38. data/crates/itsi_server/src/server/middleware_stack/middlewares/etag.rs +191 -0
  39. data/crates/itsi_server/src/server/middleware_stack/middlewares/grpc_service.rs +72 -0
  40. data/crates/itsi_server/src/server/middleware_stack/middlewares/header_interpretation.rs +85 -0
  41. data/crates/itsi_server/src/server/middleware_stack/middlewares/intrusion_protection.rs +195 -0
  42. data/crates/itsi_server/src/server/middleware_stack/middlewares/log_requests.rs +82 -0
  43. data/crates/itsi_server/src/server/middleware_stack/middlewares/mod.rs +82 -0
  44. data/crates/itsi_server/src/server/middleware_stack/middlewares/proxy.rs +216 -0
  45. data/crates/itsi_server/src/server/middleware_stack/middlewares/rate_limit.rs +124 -0
  46. data/crates/itsi_server/src/server/middleware_stack/middlewares/redirect.rs +76 -0
  47. data/crates/itsi_server/src/server/middleware_stack/middlewares/request_headers.rs +43 -0
  48. data/crates/itsi_server/src/server/middleware_stack/middlewares/response_headers.rs +34 -0
  49. data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +93 -0
  50. data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +162 -0
  51. data/crates/itsi_server/src/server/middleware_stack/middlewares/string_rewrite.rs +158 -0
  52. data/crates/itsi_server/src/server/middleware_stack/middlewares/token_source.rs +12 -0
  53. data/crates/itsi_server/src/server/middleware_stack/mod.rs +315 -0
  54. data/crates/itsi_server/src/server/mod.rs +8 -1
  55. data/crates/itsi_server/src/server/process_worker.rs +38 -12
  56. data/crates/itsi_server/src/server/rate_limiter.rs +565 -0
  57. data/crates/itsi_server/src/server/request_job.rs +11 -0
  58. data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +119 -42
  59. data/crates/itsi_server/src/server/serve_strategy/mod.rs +9 -6
  60. data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +256 -111
  61. data/crates/itsi_server/src/server/signal.rs +19 -0
  62. data/crates/itsi_server/src/server/static_file_server.rs +984 -0
  63. data/crates/itsi_server/src/server/thread_worker.rs +139 -94
  64. data/crates/itsi_server/src/server/types.rs +43 -0
  65. data/crates/itsi_server/test.md +14 -0
  66. data/crates/itsi_tracing/Cargo.toml +1 -0
  67. data/crates/itsi_tracing/src/lib.rs +216 -45
  68. data/docs/.gitignore +7 -0
  69. data/docs/.gitpod.yml +15 -0
  70. data/docs/Itsi.rb +17 -0
  71. data/docs/content/_index.md +17 -0
  72. data/docs/content/about.md +6 -0
  73. data/docs/content/docs/_index.md +18 -0
  74. data/docs/content/docs/first-page.md +9 -0
  75. data/docs/content/docs/folder/_index.md +10 -0
  76. data/docs/content/docs/folder/leaf.md +7 -0
  77. data/docs/go.mod +5 -0
  78. data/docs/go.sum +2 -0
  79. data/docs/hugo.yaml +77 -0
  80. data/examples/static_assets_example.rb +83 -0
  81. data/gems/_index.md +18 -0
  82. data/gems/scheduler/CODE_OF_CONDUCT.md +7 -0
  83. data/gems/scheduler/Cargo.lock +75 -14
  84. data/gems/scheduler/README.md +5 -0
  85. data/gems/scheduler/_index.md +7 -0
  86. data/gems/scheduler/itsi-scheduler.gemspec +4 -1
  87. data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
  88. data/gems/scheduler/lib/itsi/scheduler.rb +2 -2
  89. data/gems/scheduler/test/test_file_io.rb +0 -1
  90. data/gems/scheduler/test/test_itsi_scheduler.rb +1 -1
  91. data/gems/server/CHANGELOG.md +5 -0
  92. data/gems/server/CODE_OF_CONDUCT.md +7 -0
  93. data/gems/server/Cargo.lock +1536 -45
  94. data/gems/server/README.md +4 -0
  95. data/gems/server/_index.md +6 -0
  96. data/gems/server/exe/itsi +33 -74
  97. data/gems/server/itsi-server.gemspec +3 -2
  98. data/gems/server/lib/itsi/{request.rb → http_request.rb} +29 -5
  99. data/gems/server/lib/itsi/http_response.rb +39 -0
  100. data/gems/server/lib/itsi/server/Itsi.rb +11 -19
  101. data/gems/server/lib/itsi/server/config/dsl.rb +506 -0
  102. data/gems/server/lib/itsi/server/config.rb +103 -8
  103. data/gems/server/lib/itsi/server/default_app/default_app.rb +38 -0
  104. data/gems/server/lib/itsi/server/grpc_interface.rb +213 -0
  105. data/gems/server/lib/itsi/server/rack/handler/itsi.rb +8 -17
  106. data/gems/server/lib/itsi/server/rack_interface.rb +23 -4
  107. data/gems/server/lib/itsi/server/scheduler_interface.rb +1 -1
  108. data/gems/server/lib/itsi/server/scheduler_mode.rb +4 -0
  109. data/gems/server/lib/itsi/server/signal_trap.rb +7 -1
  110. data/gems/server/lib/itsi/server/version.rb +1 -1
  111. data/gems/server/lib/itsi/server.rb +74 -63
  112. data/gems/server/lib/itsi/standard_headers.rb +86 -0
  113. data/gems/server/test/helpers/test_helper.rb +12 -12
  114. data/gems/server/test/test_itsi_server.rb +2 -2
  115. data/lib/itsi/version.rb +1 -1
  116. data/sandbox/itsi_file/Gemfile +11 -0
  117. data/sandbox/itsi_file/Gemfile.lock +69 -0
  118. data/sandbox/itsi_file/Itsi.rb +276 -0
  119. data/sandbox/itsi_file/error.html +2 -0
  120. data/sandbox/itsi_file/organisations_controller.rb +20 -0
  121. data/sandbox/itsi_file/public/assets/image.png +0 -0
  122. data/sandbox/itsi_file/public/assets/index.html +1 -0
  123. data/sandbox/itsi_sandbox_hanami/Gemfile.lock +2 -2
  124. data/sandbox/itsi_sandbox_rack/Gemfile.lock +2 -2
  125. data/sandbox/itsi_sandbox_rack/config.ru +2 -15
  126. data/sandbox/itsi_sandbox_rails/.dockerignore +2 -5
  127. data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +1 -1
  128. data/sandbox/itsi_sandbox_rails/.gitignore +2 -1
  129. data/sandbox/itsi_sandbox_rails/Dockerfile +6 -9
  130. data/sandbox/itsi_sandbox_rails/Gemfile +16 -22
  131. data/sandbox/itsi_sandbox_rails/Gemfile.lock +100 -225
  132. data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +4 -0
  133. data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +11 -6
  134. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +4 -0
  135. data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +4 -0
  136. data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +7 -8
  137. data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -3
  138. data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +2 -7
  139. data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +3 -4
  140. data/sandbox/itsi_sandbox_rails/bin/setup +8 -5
  141. data/sandbox/itsi_sandbox_rails/config/application.rb +1 -35
  142. data/sandbox/itsi_sandbox_rails/config/cable.yml +3 -10
  143. data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +1 -1
  144. data/sandbox/itsi_sandbox_rails/config/database.yml +9 -19
  145. data/sandbox/itsi_sandbox_rails/config/environment.rb +1 -1
  146. data/sandbox/itsi_sandbox_rails/config/environments/development.rb +21 -12
  147. data/sandbox/itsi_sandbox_rails/config/environments/production.rb +49 -34
  148. data/sandbox/itsi_sandbox_rails/config/environments/test.rb +19 -5
  149. data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +5 -0
  150. data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +1 -1
  151. data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +13 -0
  152. data/sandbox/itsi_sandbox_rails/config/puma.rb +2 -9
  153. data/sandbox/itsi_sandbox_rails/config.ru +0 -1
  154. data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +1 -1
  155. data/sandbox/itsi_sandbox_rails/db/schema.rb +2 -2
  156. data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
  157. data/sandbox/itsi_sandbox_rails/public/404.html +66 -113
  158. data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +65 -113
  159. data/sandbox/itsi_sandbox_rails/public/422.html +66 -113
  160. data/sandbox/itsi_sandbox_rails/public/500.html +65 -113
  161. data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
  162. data/sandbox/itsi_sandbox_rails/public/icon.svg +2 -2
  163. data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +13 -0
  164. data/sandbox/itsi_sandbox_roda/Gemfile.lock +3 -10
  165. data/tasks.txt +72 -35
  166. metadata +89 -139
  167. data/crates/itsi_server/src/body_proxy/mod.rs +0 -2
  168. data/crates/itsi_server/src/request/itsi_request.rs +0 -298
  169. data/crates/itsi_server/src/request/mod.rs +0 -1
  170. data/crates/itsi_server/src/response/mod.rs +0 -1
  171. data/crates/itsi_server/src/server/itsi_server.rs +0 -288
  172. data/gems/scheduler/ext/itsi_error/Cargo.lock +0 -368
  173. data/gems/scheduler/ext/itsi_error/Cargo.toml +0 -11
  174. data/gems/scheduler/ext/itsi_error/src/from.rs +0 -68
  175. data/gems/scheduler/ext/itsi_error/src/lib.rs +0 -24
  176. data/gems/scheduler/ext/itsi_instrument_entry/Cargo.toml +0 -15
  177. data/gems/scheduler/ext/itsi_instrument_entry/src/lib.rs +0 -31
  178. data/gems/scheduler/ext/itsi_rb_helpers/Cargo.lock +0 -355
  179. data/gems/scheduler/ext/itsi_rb_helpers/Cargo.toml +0 -10
  180. data/gems/scheduler/ext/itsi_rb_helpers/src/heap_value.rs +0 -121
  181. data/gems/scheduler/ext/itsi_rb_helpers/src/lib.rs +0 -201
  182. data/gems/scheduler/ext/itsi_scheduler/Cargo.toml +0 -24
  183. data/gems/scheduler/ext/itsi_scheduler/extconf.rb +0 -6
  184. data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/io_helpers.rs +0 -56
  185. data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/io_waiter.rs +0 -44
  186. data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/timer.rs +0 -44
  187. data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler.rs +0 -308
  188. data/gems/scheduler/ext/itsi_scheduler/src/lib.rs +0 -38
  189. data/gems/scheduler/ext/itsi_server/Cargo.lock +0 -2956
  190. data/gems/scheduler/ext/itsi_server/Cargo.toml +0 -50
  191. data/gems/scheduler/ext/itsi_server/extconf.rb +0 -6
  192. data/gems/scheduler/ext/itsi_server/src/body_proxy/big_bytes.rs +0 -104
  193. data/gems/scheduler/ext/itsi_server/src/body_proxy/itsi_body_proxy.rs +0 -122
  194. data/gems/scheduler/ext/itsi_server/src/body_proxy/mod.rs +0 -2
  195. data/gems/scheduler/ext/itsi_server/src/env.rs +0 -43
  196. data/gems/scheduler/ext/itsi_server/src/lib.rs +0 -180
  197. data/gems/scheduler/ext/itsi_server/src/request/itsi_request.rs +0 -298
  198. data/gems/scheduler/ext/itsi_server/src/request/mod.rs +0 -1
  199. data/gems/scheduler/ext/itsi_server/src/response/itsi_response.rs +0 -357
  200. data/gems/scheduler/ext/itsi_server/src/response/mod.rs +0 -1
  201. data/gems/scheduler/ext/itsi_server/src/server/bind.rs +0 -174
  202. data/gems/scheduler/ext/itsi_server/src/server/bind_protocol.rs +0 -37
  203. data/gems/scheduler/ext/itsi_server/src/server/io_stream.rs +0 -104
  204. data/gems/scheduler/ext/itsi_server/src/server/itsi_server.rs +0 -288
  205. data/gems/scheduler/ext/itsi_server/src/server/lifecycle_event.rs +0 -9
  206. data/gems/scheduler/ext/itsi_server/src/server/listener.rs +0 -318
  207. data/gems/scheduler/ext/itsi_server/src/server/mod.rs +0 -11
  208. data/gems/scheduler/ext/itsi_server/src/server/process_worker.rs +0 -203
  209. data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +0 -260
  210. data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/mod.rs +0 -27
  211. data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/single_mode.rs +0 -276
  212. data/gems/scheduler/ext/itsi_server/src/server/signal.rs +0 -74
  213. data/gems/scheduler/ext/itsi_server/src/server/thread_worker.rs +0 -399
  214. data/gems/scheduler/ext/itsi_server/src/server/tls/locked_dir_cache.rs +0 -132
  215. data/gems/scheduler/ext/itsi_server/src/server/tls.rs +0 -265
  216. data/gems/scheduler/ext/itsi_tracing/Cargo.lock +0 -274
  217. data/gems/scheduler/ext/itsi_tracing/Cargo.toml +0 -16
  218. data/gems/scheduler/ext/itsi_tracing/src/lib.rs +0 -58
  219. data/gems/server/ext/itsi_error/Cargo.lock +0 -368
  220. data/gems/server/ext/itsi_error/Cargo.toml +0 -11
  221. data/gems/server/ext/itsi_error/src/from.rs +0 -68
  222. data/gems/server/ext/itsi_error/src/lib.rs +0 -24
  223. data/gems/server/ext/itsi_instrument_entry/Cargo.toml +0 -15
  224. data/gems/server/ext/itsi_instrument_entry/src/lib.rs +0 -31
  225. data/gems/server/ext/itsi_rb_helpers/Cargo.lock +0 -355
  226. data/gems/server/ext/itsi_rb_helpers/Cargo.toml +0 -10
  227. data/gems/server/ext/itsi_rb_helpers/src/heap_value.rs +0 -121
  228. data/gems/server/ext/itsi_rb_helpers/src/lib.rs +0 -201
  229. data/gems/server/ext/itsi_scheduler/Cargo.toml +0 -24
  230. data/gems/server/ext/itsi_scheduler/extconf.rb +0 -6
  231. data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/io_helpers.rs +0 -56
  232. data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/io_waiter.rs +0 -44
  233. data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/timer.rs +0 -44
  234. data/gems/server/ext/itsi_scheduler/src/itsi_scheduler.rs +0 -308
  235. data/gems/server/ext/itsi_scheduler/src/lib.rs +0 -38
  236. data/gems/server/ext/itsi_server/Cargo.lock +0 -2956
  237. data/gems/server/ext/itsi_server/Cargo.toml +0 -50
  238. data/gems/server/ext/itsi_server/extconf.rb +0 -6
  239. data/gems/server/ext/itsi_server/src/body_proxy/big_bytes.rs +0 -104
  240. data/gems/server/ext/itsi_server/src/body_proxy/itsi_body_proxy.rs +0 -122
  241. data/gems/server/ext/itsi_server/src/body_proxy/mod.rs +0 -2
  242. data/gems/server/ext/itsi_server/src/env.rs +0 -43
  243. data/gems/server/ext/itsi_server/src/lib.rs +0 -180
  244. data/gems/server/ext/itsi_server/src/request/mod.rs +0 -1
  245. data/gems/server/ext/itsi_server/src/response/itsi_response.rs +0 -357
  246. data/gems/server/ext/itsi_server/src/response/mod.rs +0 -1
  247. data/gems/server/ext/itsi_server/src/server/bind.rs +0 -174
  248. data/gems/server/ext/itsi_server/src/server/bind_protocol.rs +0 -37
  249. data/gems/server/ext/itsi_server/src/server/io_stream.rs +0 -104
  250. data/gems/server/ext/itsi_server/src/server/itsi_server.rs +0 -288
  251. data/gems/server/ext/itsi_server/src/server/lifecycle_event.rs +0 -9
  252. data/gems/server/ext/itsi_server/src/server/listener.rs +0 -318
  253. data/gems/server/ext/itsi_server/src/server/mod.rs +0 -11
  254. data/gems/server/ext/itsi_server/src/server/process_worker.rs +0 -203
  255. data/gems/server/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +0 -260
  256. data/gems/server/ext/itsi_server/src/server/serve_strategy/mod.rs +0 -27
  257. data/gems/server/ext/itsi_server/src/server/serve_strategy/single_mode.rs +0 -276
  258. data/gems/server/ext/itsi_server/src/server/signal.rs +0 -74
  259. data/gems/server/ext/itsi_server/src/server/thread_worker.rs +0 -399
  260. data/gems/server/ext/itsi_server/src/server/tls/locked_dir_cache.rs +0 -132
  261. data/gems/server/ext/itsi_server/src/server/tls.rs +0 -265
  262. data/gems/server/ext/itsi_tracing/Cargo.lock +0 -274
  263. data/gems/server/ext/itsi_tracing/Cargo.toml +0 -16
  264. data/gems/server/ext/itsi_tracing/src/lib.rs +0 -58
  265. data/gems/server/lib/itsi/server/options_dsl.rb +0 -401
  266. data/gems/server/lib/itsi/stream_io.rb +0 -38
  267. data/location_dsl.rb +0 -381
  268. data/sandbox/itsi_sandbox_rails/.kamal/hooks/docker-setup.sample +0 -3
  269. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-app-boot.sample +0 -3
  270. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-deploy.sample +0 -14
  271. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-proxy-reboot.sample +0 -3
  272. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-app-boot.sample +0 -3
  273. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-build.sample +0 -51
  274. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-connect.sample +0 -47
  275. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-deploy.sample +0 -109
  276. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-proxy-reboot.sample +0 -3
  277. data/sandbox/itsi_sandbox_rails/.kamal/secrets +0 -17
  278. data/sandbox/itsi_sandbox_rails/bin/dev +0 -2
  279. data/sandbox/itsi_sandbox_rails/bin/jobs +0 -6
  280. data/sandbox/itsi_sandbox_rails/bin/kamal +0 -27
  281. data/sandbox/itsi_sandbox_rails/bin/thrust +0 -5
  282. data/sandbox/itsi_sandbox_rails/config/cache.yml +0 -16
  283. data/sandbox/itsi_sandbox_rails/config/deploy.yml +0 -116
  284. data/sandbox/itsi_sandbox_rails/config/queue.yml +0 -18
  285. data/sandbox/itsi_sandbox_rails/config/recurring.yml +0 -10
  286. data/sandbox/itsi_sandbox_rails/db/cable_schema.rb +0 -11
  287. data/sandbox/itsi_sandbox_rails/db/cache_schema.rb +0 -14
  288. data/sandbox/itsi_sandbox_rails/db/queue_schema.rb +0 -129
  289. data/sandbox/itsi_sandbox_rails/public/400.html +0 -114
  290. data/sandbox/itsi_sandbox_rails/test/fixtures/posts.yml +0 -9
  291. data/sandbox/itsi_sandbox_rails/test/models/post_test.rb +0 -7
  292. /data/{sandbox/itsi_sandbox_rails/script/.keep → crates/_index.md} +0 -0
  293. /data/gems/server/lib/itsi/{index.html → server/default_app/index.html} +0 -0
@@ -2,6 +2,7 @@
2
2
  require "fileutils"
3
3
 
4
4
  APP_ROOT = File.expand_path("..", __dir__)
5
+ APP_NAME = "itsi-sandbox-rails"
5
6
 
6
7
  def system!(*args)
7
8
  system(*args, exception: true)
@@ -13,6 +14,7 @@ FileUtils.chdir APP_ROOT do
13
14
  # Add necessary setup steps to this file.
14
15
 
15
16
  puts "== Installing dependencies =="
17
+ system! "gem install bundler --conservative"
16
18
  system("bundle check") || system!("bundle install")
17
19
 
18
20
  # puts "\n== Copying sample files =="
@@ -26,9 +28,10 @@ FileUtils.chdir APP_ROOT do
26
28
  puts "\n== Removing old logs and tempfiles =="
27
29
  system! "bin/rails log:clear tmp:clear"
28
30
 
29
- unless ARGV.include?("--skip-server")
30
- puts "\n== Starting development server =="
31
- STDOUT.flush # flush the output before exec(2) so that it displays
32
- exec "bin/dev"
33
- end
31
+ puts "\n== Restarting application server =="
32
+ system! "bin/rails restart"
33
+
34
+ # puts "\n== Configuring puma-dev =="
35
+ # system "ln -nfs #{APP_ROOT} ~/.puma-dev/#{APP_NAME}"
36
+ # system "curl -Is https://#{APP_NAME}.test/up | head -n 1"
34
37
  end
@@ -9,47 +9,13 @@ Bundler.require(*Rails.groups)
9
9
  module ItsiSandboxRails
10
10
  class Application < Rails::Application
11
11
  # Initialize configuration defaults for originally generated Rails version.
12
- config.load_defaults 8.0
12
+ config.load_defaults 7.2
13
13
 
14
14
  # Please, add to the `ignore` list any other `lib` subdirectories that do
15
15
  # not contain `.rb` files, or that should not be reloaded or eager loaded.
16
16
  # Common ones are `templates`, `generators`, or `middleware`, for example.
17
17
  config.autoload_lib(ignore: %w[assets tasks])
18
18
 
19
- # Test impact of certain middleware combinations on performance
20
- # here.
21
- [
22
- # ActionDispatch::HostAuthorization,
23
- # Rack::Sendfile,
24
- # ActionDispatch::Static,
25
- # ActionDispatch::Executor,
26
- # ActionDispatch::ServerTiming,
27
- # Rack::Runtime,
28
- # Rack::MethodOverride,
29
- # ActionDispatch::RequestId,
30
- # ActionDispatch::RemoteIp,
31
- # Rails::Rack::Logger,
32
- # ActionDispatch::ShowExceptions,
33
- # ActionDispatch::DebugExceptions,
34
- # ActionDispatch::ActionableExceptions,
35
- # ActionDispatch::Reloader,
36
- # ActionDispatch::Callbacks,
37
- # ActiveRecord::Migration::CheckPending,
38
- # ActionDispatch::Cookies,
39
- # ActionDispatch::Session::CookieStore,
40
- # ActionDispatch::Flash,
41
- # ActionDispatch::ContentSecurityPolicy::Middleware,
42
- # ActionDispatch::PermissionsPolicy::Middleware,
43
- # Rack::Head,
44
- # Rack::ConditionalGet,
45
- # Rack::ETag,
46
- # Rack::TempfileReaper
47
- ].each do |mw|
48
- config.middleware.delete(mw)
49
- end
50
-
51
-
52
-
53
19
  # Configuration for the application, engines, and railties goes here.
54
20
  #
55
21
  # These settings can be overridden in specific environments using the files
@@ -1,7 +1,3 @@
1
- # Async adapter only works within the same process, so for manually triggering cable updates from a console,
2
- # and seeing results in the browser, you must do so from the web console (running inside the dev process),
3
- # not a terminal started via bin/rails console! Add "console" to any action or any ERB template view
4
- # to make the web console appear.
5
1
  development:
6
2
  adapter: async
7
3
 
@@ -9,9 +5,6 @@ test:
9
5
  adapter: test
10
6
 
11
7
  production:
12
- adapter: solid_cable
13
- connects_to:
14
- database:
15
- writing: cable
16
- polling_interval: 0.1.seconds
17
- message_retention: 1.day
8
+ adapter: redis
9
+ url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
10
+ channel_prefix: itsi_sandbox_rails_production
@@ -1 +1 @@
1
- W3ydB79YX0eIKCplin4J/17Tx1MVuQvFziH+SfuhgiJWU5nEhCujITKzYP81bf99HsiAghCrNiKGuD43Zt7V8H3+4tUbATrzy3PiFBULAMVEugJqf6eQgHY4HIf0A59V1KwGD/dQou3DcweB0N+DCpkGsbAeqAax5P05gE+08776vcajwY1nYeEEeb2AkzHis43yMSVL3jt9VoHQGD70y3Rjy3+oLQYVj40yBwrClK5x3qCw9mvNHJ3VjA7tETPKyEvqHkBho/Jn2kxLfbU5031YqAHKPjDsz7sX1WkahoLr6pV7OxlOxSNfKR8kvJRtAPBWMzN3f1Sx1w6AJPdoCmNqi4FG88COi27j9as6nUSV9MUQd88raPkzlpgSDRBLZjecqs6qDsBo+w4g6yfBy5MBY6CDXOLwCHLTGAVlJuGw8mf3vXQXf7TxzIkJ/8SsyNCfzodpAO3babo5Nec++dFhLPysgxpdvbAxsMj0g7uo0sydLktCSbl6--VHimuF6LoBfhbjnm--DkOgcON76vM4uKJoOYteVw==
1
+ jCIvbRX+tvrgrMnp21/H7Q+QpgkP9wLNowgqjoA0muXSsZ2eT7UHieGmK2bSjebQGqzWsqJguWdRbdtAJ1IEN/+m/ZlkvAYA1BfZyyu9UjBXYyFJTIWo5sXZKsRVYep2CnoLJOMr0bbzXa6QS4i7sI1dzIUYSC33Z63xNX0Oo/8Ww+hfkt9qJcf1EFZ/VyMjvAG4uKBRshuADQDBOywyDFLxduewR75LhSL3okTVPqMiBODckFxNW6ZDSATY50ISoJcSHAGcO4hfi7Jizm9XsDvGlH7ugkgCrHYr8iBy9gjnb35ftHODu6YBLeu2sTmHxfxo4eHuc7l6TB68B7yu8DsB0bYg284zRYKm/9fkKAg8LZ/57epvq8ac0tfzHGNXPfzpqdYCrkxaknPdxmWVB2qn4rtF--2pb2jCnBZP2MWkro--3HUjoEXPsUGfO4flB69itw==
@@ -8,33 +8,23 @@ default: &default
8
8
  adapter: postgresql
9
9
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
10
10
  timeout: 5000
11
+ database: itsi_sandbox_rails
11
12
 
12
13
  development:
13
14
  <<: *default
14
- database: itsi_sandbox_development
15
15
 
16
16
  # Warning: The database defined as "test" will be erased and
17
17
  # re-generated from your development database when you run "rake".
18
18
  # Do not set this db to the same as development or production.
19
19
  test:
20
20
  <<: *default
21
- database: itsi_sandbox_test
22
21
 
23
- # Store production database in the storage/ directory, which by default
24
- # is mounted as a persistent Docker volume in config/deploy.yml.
22
+ # SQLite3 write its data on the local filesystem, as such it requires
23
+ # persistent disks. If you are deploying to a managed service, you should
24
+ # make sure it provides disk persistence, as many don't.
25
+ #
26
+ # Similarly, if you deploy your application as a Docker container, you must
27
+ # ensure the database is located in a persisted volume.
25
28
  production:
26
- primary:
27
- <<: *default
28
- database: itsi_sandbox_rails_production
29
- cache:
30
- <<: *default
31
- database: itsi_sandbox_rails_production_cache
32
- migrations_paths: db/cache_migrate
33
- queue:
34
- <<: *default
35
- database: itsi_sandbox_rails_production_queue
36
- migrations_paths: db/queue_migrate
37
- cable:
38
- <<: *default
39
- database: itsi_sandbox_rails_production_cable
40
- migrations_paths: db/cable_migrate
29
+ <<: *default
30
+ # database: path/to/persistent/storage/production.sqlite3
@@ -1,5 +1,5 @@
1
1
  # Load the Rails application.
2
2
  require_relative "application"
3
- require "osprey/scheduler"
3
+
4
4
  # Initialize the Rails application.
5
5
  Rails.application.initialize!
@@ -3,7 +3,9 @@ require "active_support/core_ext/integer/time"
3
3
  Rails.application.configure do
4
4
  # Settings specified here will take precedence over those in config/application.rb.
5
5
 
6
- # Make code changes take effect immediately without server restart.
6
+ # In the development environment your application's code is reloaded any time
7
+ # it changes. This slows down response time but is perfect for development
8
+ # since you don't have to restart the web server when you make code changes.
7
9
  config.enable_reloading = true
8
10
 
9
11
  # Do not eager load code on boot.
@@ -15,18 +17,19 @@ Rails.application.configure do
15
17
  # Enable server timing.
16
18
  config.server_timing = true
17
19
 
18
- # Enable/disable Action Controller caching. By default Action Controller caching is disabled.
19
- # Run rails dev:cache to toggle Action Controller caching.
20
+ # Enable/disable caching. By default caching is disabled.
21
+ # Run rails dev:cache to toggle caching.
20
22
  if Rails.root.join("tmp/caching-dev.txt").exist?
21
23
  config.action_controller.perform_caching = true
22
24
  config.action_controller.enable_fragment_cache_logging = true
23
- config.public_file_server.headers = { "cache-control" => "public, max-age=#{2.days.to_i}" }
25
+
26
+ config.cache_store = :memory_store
27
+ config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
24
28
  else
25
29
  config.action_controller.perform_caching = false
26
- end
27
30
 
28
- # Change to :null_store to avoid any caching.
29
- config.cache_store = :memory_store
31
+ config.cache_store = :null_store
32
+ end
30
33
 
31
34
  # Store uploaded files on the local file system (see config/storage.yml for options).
32
35
  config.active_storage.service = :local
@@ -34,27 +37,33 @@ Rails.application.configure do
34
37
  # Don't care if the mailer can't send.
35
38
  config.action_mailer.raise_delivery_errors = false
36
39
 
37
- # Make template changes take effect immediately.
40
+ # Disable caching for Action Mailer templates even if Action Controller
41
+ # caching is enabled.
38
42
  config.action_mailer.perform_caching = false
39
43
 
40
- # Set localhost to be used by links generated in mailer templates.
41
44
  config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
42
45
 
43
46
  # Print deprecation notices to the Rails logger.
44
47
  config.active_support.deprecation = :log
45
48
 
49
+ # Raise exceptions for disallowed deprecations.
50
+ config.active_support.disallowed_deprecation = :raise
51
+
52
+ # Tell Active Support which deprecation messages to disallow.
53
+ config.active_support.disallowed_deprecation_warnings = []
54
+
46
55
  # Raise an error on page load if there are pending migrations.
47
56
  config.active_record.migration_error = :page_load
48
57
 
49
58
  # Highlight code that triggered database queries in logs.
50
59
  config.active_record.verbose_query_logs = true
51
60
 
52
- # Append comments with runtime information tags to SQL queries in logs.
53
- config.active_record.query_log_tags_enabled = true
54
-
55
61
  # Highlight code that enqueued background job in logs.
56
62
  config.active_job.verbose_enqueue_logs = true
57
63
 
64
+ # Suppress logger output for asset requests.
65
+ config.assets.quiet = true
66
+
58
67
  # Raises error for missing translations.
59
68
  # config.i18n.raise_on_missing_translations = true
60
69
 
@@ -6,73 +6,89 @@ Rails.application.configure do
6
6
  # Code is not reloaded between requests.
7
7
  config.enable_reloading = false
8
8
 
9
- # Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
9
+ # Eager load code on boot. This eager loads most of Rails and
10
+ # your application in memory, allowing both threaded web servers
11
+ # and those relying on copy on write to perform better.
12
+ # Rake tasks automatically ignore this option for performance.
10
13
  config.eager_load = true
11
14
 
12
- # Full error reports are disabled.
15
+ # Full error reports are disabled and caching is turned on.
13
16
  config.consider_all_requests_local = false
14
-
15
- # Turn on fragment caching in view templates.
16
17
  config.action_controller.perform_caching = true
17
18
 
18
- # Cache assets for far-future expiry since they are all digest stamped.
19
- config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
19
+ # Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
20
+ # key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
21
+ # config.require_master_key = true
22
+
23
+ # Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
24
+ # config.public_file_server.enabled = false
25
+
26
+ # Compress CSS using a preprocessor.
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fall back to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
20
31
 
21
32
  # Enable serving of images, stylesheets, and JavaScripts from an asset server.
22
33
  # config.asset_host = "http://assets.example.com"
23
34
 
35
+ # Specifies the header that your server uses for sending files.
36
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache
37
+ # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX
38
+
24
39
  # Store uploaded files on the local file system (see config/storage.yml for options).
25
40
  config.active_storage.service = :local
26
41
 
42
+ # Mount Action Cable outside main process or domain.
43
+ # config.action_cable.mount_path = nil
44
+ # config.action_cable.url = "wss://example.com/cable"
45
+ # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ]
46
+
27
47
  # Assume all access to the app is happening through a SSL-terminating reverse proxy.
28
- config.assume_ssl = true
48
+ # Can be used together with config.force_ssl for Strict-Transport-Security and secure cookies.
49
+ # config.assume_ssl = true
29
50
 
30
51
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- config.force_ssl = true
52
+ config.force_ssl = false
32
53
 
33
54
  # Skip http-to-https redirect for the default health check endpoint.
34
55
  # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
35
56
 
36
- # Log to STDOUT with the current request id as a default log tag.
57
+ # Log to STDOUT by default
58
+ config.logger = ActiveSupport::Logger.new(STDOUT)
59
+ .tap { |logger| logger.formatter = ::Logger::Formatter.new }
60
+ .then { |logger| ActiveSupport::TaggedLogging.new(logger) }
61
+
62
+ # Prepend all log lines with the following tags.
37
63
  config.log_tags = [ :request_id ]
38
- config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
39
64
 
40
- # Change to "debug" to log everything (including potentially personally-identifiable information!)
65
+ # "info" includes generic and useful information about system operation, but avoids logging too much
66
+ # information to avoid inadvertent exposure of personally identifiable information (PII). If you
67
+ # want to log everything, set the level to "debug".
41
68
  config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
42
69
 
43
- # Prevent health checks from clogging up the logs.
44
- config.silence_healthcheck_path = "/up"
70
+ # Use a different cache store in production.
71
+ # config.cache_store = :mem_cache_store
45
72
 
46
- # Don't log any deprecations.
47
- config.active_support.report_deprecations = false
48
-
49
- # Replace the default in-process memory cache store with a durable alternative.
50
- config.cache_store = :solid_cache_store
73
+ # Use a real queuing backend for Active Job (and separate queues per environment).
74
+ # config.active_job.queue_adapter = :resque
75
+ # config.active_job.queue_name_prefix = "itsi_sandbox_rails_production"
51
76
 
52
- # Replace the default in-process and non-durable queuing backend for Active Job.
53
- config.active_job.queue_adapter = :solid_queue
54
- config.solid_queue.connects_to = { database: { writing: :queue } }
77
+ # Disable caching for Action Mailer templates even if Action Controller
78
+ # caching is enabled.
79
+ config.action_mailer.perform_caching = false
55
80
 
56
81
  # Ignore bad email addresses and do not raise email delivery errors.
57
82
  # Set this to true and configure the email server for immediate delivery to raise delivery errors.
58
83
  # config.action_mailer.raise_delivery_errors = false
59
84
 
60
- # Set host to be used by links generated in mailer templates.
61
- config.action_mailer.default_url_options = { host: "example.com" }
62
-
63
- # Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
64
- # config.action_mailer.smtp_settings = {
65
- # user_name: Rails.application.credentials.dig(:smtp, :user_name),
66
- # password: Rails.application.credentials.dig(:smtp, :password),
67
- # address: "smtp.example.com",
68
- # port: 587,
69
- # authentication: :plain
70
- # }
71
-
72
85
  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
73
86
  # the I18n.default_locale when a translation cannot be found).
74
87
  config.i18n.fallbacks = true
75
88
 
89
+ # Don't log any deprecations.
90
+ config.active_support.report_deprecations = false
91
+
76
92
  # Do not dump schema after migrations.
77
93
  config.active_record.dump_schema_after_migration = false
78
94
 
@@ -84,7 +100,6 @@ Rails.application.configure do
84
100
  # "example.com", # Allow requests from example.com
85
101
  # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
86
102
  # ]
87
- #
88
103
  # Skip DNS rebinding protection for the default health check endpoint.
89
104
  # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
90
105
  end
@@ -1,3 +1,5 @@
1
+ require "active_support/core_ext/integer/time"
2
+
1
3
  # The test environment is used exclusively to run your application's
2
4
  # test suite. You never need to work with it otherwise. Remember that
3
5
  # your test database is "scratch space" for the test suite and is wiped
@@ -15,11 +17,12 @@ Rails.application.configure do
15
17
  # loading is working properly before deploying your code.
16
18
  config.eager_load = ENV["CI"].present?
17
19
 
18
- # Configure public file server for tests with cache-control for performance.
19
- config.public_file_server.headers = { "cache-control" => "public, max-age=3600" }
20
+ # Configure public file server for tests with Cache-Control for performance.
21
+ config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{1.hour.to_i}" }
20
22
 
21
- # Show full error reports.
23
+ # Show full error reports and disable caching.
22
24
  config.consider_all_requests_local = true
25
+ config.action_controller.perform_caching = false
23
26
  config.cache_store = :null_store
24
27
 
25
28
  # Render exception templates for rescuable exceptions and raise for other exceptions.
@@ -31,17 +34,28 @@ Rails.application.configure do
31
34
  # Store uploaded files on the local file system in a temporary directory.
32
35
  config.active_storage.service = :test
33
36
 
37
+ # Disable caching for Action Mailer templates even if Action Controller
38
+ # caching is enabled.
39
+ config.action_mailer.perform_caching = false
40
+
34
41
  # Tell Action Mailer not to deliver emails to the real world.
35
42
  # The :test delivery method accumulates sent emails in the
36
43
  # ActionMailer::Base.deliveries array.
37
44
  config.action_mailer.delivery_method = :test
38
45
 
39
- # Set host to be used by links generated in mailer templates.
40
- config.action_mailer.default_url_options = { host: "example.com" }
46
+ # Unlike controllers, the mailer instance doesn't have any context about the
47
+ # incoming request so you'll need to provide the :host parameter yourself.
48
+ config.action_mailer.default_url_options = { host: "www.example.com" }
41
49
 
42
50
  # Print deprecation notices to the stderr.
43
51
  config.active_support.deprecation = :stderr
44
52
 
53
+ # Raise exceptions for disallowed deprecations.
54
+ config.active_support.disallowed_deprecation = :raise
55
+
56
+ # Tell Active Support which deprecation messages to disallow.
57
+ config.active_support.disallowed_deprecation_warnings = []
58
+
45
59
  # Raises error for missing translations.
46
60
  # config.i18n.raise_on_missing_translations = true
47
61
 
@@ -5,3 +5,8 @@ Rails.application.config.assets.version = "1.0"
5
5
 
6
6
  # Add additional assets to the asset load path.
7
7
  # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in the app/assets
11
+ # folder are already added.
12
+ # Rails.application.config.assets.precompile += %w[ admin.js admin.css ]
@@ -4,5 +4,5 @@
4
4
  # Use this to limit dissemination of sensitive information.
5
5
  # See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
6
6
  Rails.application.config.filter_parameters += [
7
- :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc
7
+ :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
8
8
  ]
@@ -0,0 +1,13 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Define an application-wide HTTP permissions policy. For further
4
+ # information see: https://developers.google.com/web/updates/2018/06/feature-policy
5
+
6
+ # Rails.application.config.permissions_policy do |policy|
7
+ # policy.camera :none
8
+ # policy.gyroscope :none
9
+ # policy.microphone :none
10
+ # policy.usb :none
11
+ # policy.fullscreen :self
12
+ # policy.payment :self, "https://secure.example.com"
13
+ # end
@@ -1,17 +1,13 @@
1
1
  # This configuration file will be evaluated by Puma. The top-level methods that
2
2
  # are invoked here are part of Puma's configuration DSL. For more information
3
3
  # about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
4
- #
4
+
5
5
  # Puma starts a configurable number of processes (workers) and each process
6
6
  # serves each request in a thread from an internal thread pool.
7
7
  #
8
- # You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
9
- # should only set this value when you want to run 2 or more workers. The
10
- # default is already 1.
11
- #
12
8
  # The ideal number of threads per worker depends both on how much time the
13
9
  # application spends waiting for IO operations and on how much you wish to
14
- # prioritize throughput over latency.
10
+ # to prioritize throughput over latency.
15
11
  #
16
12
  # As a rule of thumb, increasing the number of threads will increase how much
17
13
  # traffic a given process can handle (throughput), but due to CRuby's
@@ -33,9 +29,6 @@ port ENV.fetch("PORT", 3000)
33
29
  # Allow puma to be restarted by `bin/rails restart` command.
34
30
  plugin :tmp_restart
35
31
 
36
- # Run the Solid Queue supervisor inside of Puma for single-server deployments
37
- plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
38
-
39
32
  # Specify the PID file. Defaults to tmp/pids/server.pid in development.
40
33
  # In other environments, only set the PID file if requested.
41
34
  pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
@@ -1,7 +1,6 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
3
  require_relative "config/environment"
4
- require 'debug'
5
4
 
6
5
  run Rails.application
7
6
  Rails.application.load_server
@@ -1,4 +1,4 @@
1
- class CreatePosts < ActiveRecord::Migration[8.0]
1
+ class CreatePosts < ActiveRecord::Migration[7.2]
2
2
  def change
3
3
  create_table :posts do |t|
4
4
  t.text :name
@@ -10,9 +10,9 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema[8.0].define(version: 2025_03_01_041554) do
13
+ ActiveRecord::Schema[7.2].define(version: 2025_03_01_041554) do
14
14
  # These are extensions that must be enabled in order to support this database
15
- enable_extension "pg_catalog.plpgsql"
15
+ enable_extension "plpgsql"
16
16
 
17
17
  create_table "posts", force: :cascade do |t|
18
18
  t.text "name"
File without changes