summaryrefslogtreecommitdiffhomepage
path: root/config/application.rb
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-03-09 16:02:59 -0500
committerrealtradam <[email protected]>2024-03-09 16:02:59 -0500
commitfdd9a2ef16b9401048f0c6b743c09ddcb52a8516 (patch)
tree434ffb70536b5a72efcee3ed6b46275ced0d5e27 /config/application.rb
downloadgameHolster-fdd9a2ef16b9401048f0c6b743c09ddcb52a8516.tar.gz
gameHolster-fdd9a2ef16b9401048f0c6b743c09ddcb52a8516.zip
The site is born
Diffstat (limited to 'config/application.rb')
-rw-r--r--config/application.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 0000000..e1c1688
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,27 @@
+require_relative "boot"
+
+require "rails/all"
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module GamesHost
+ class Application < Rails::Application
+ # Initialize configuration defaults for originally generated Rails version.
+ config.load_defaults 7.1
+
+ # Please, add to the `ignore` list any other `lib` subdirectories that do
+ # not contain `.rb` files, or that should not be reloaded or eager loaded.
+ # Common ones are `templates`, `generators`, or `middleware`, for example.
+ config.autoload_lib(ignore: %w(assets tasks))
+
+ # Configuration for the application, engines, and railties goes here.
+ #
+ # These settings can be overridden in specific environments using the files
+ # in config/environments, which are processed later.
+ #
+ # config.time_zone = "Central Time (US & Canada)"
+ # config.eager_load_paths << Rails.root.join("extras")
+ end
+end