about summary refs log tree commit diff stats
path: root/config/application.rb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
commit56f5841d4b9c12296cdfcaeff174b2627d59afc8 (patch)
tree4f7da4ebbe5ee15a1594b26466ed78e2cf10de35 /config/application.rb
parentc1b0443ba2aebdbd39291ddab0c189f3f4831320 (diff)
downloadpokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.gz
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.bz2
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.zip
Migrate to full rails app
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..490fc8c --- /dev/null +++ b/config/application.rb
@@ -0,0 +1,27 @@
1require_relative "boot"
2
3require "rails/all"
4
5# Require the gems listed in Gemfile, including any gems
6# you've limited to :test, :development, or :production.
7Bundler.require(*Rails.groups)
8
9module Pokeviewer
10 class Application < Rails::Application
11 # Initialize configuration defaults for originally generated Rails version.
12 config.load_defaults 7.1
13
14 # Please, add to the `ignore` list any other `lib` subdirectories that do
15 # not contain `.rb` files, or that should not be reloaded or eager loaded.
16 # Common ones are `templates`, `generators`, or `middleware`, for example.
17 config.autoload_lib(ignore: %w(assets tasks))
18
19 # Configuration for the application, engines, and railties goes here.
20 #
21 # These settings can be overridden in specific environments using the files
22 # in config/environments, which are processed later.
23 #
24 # config.time_zone = "Central Time (US & Canada)"
25 # config.eager_load_paths << Rails.root.join("extras")
26 end
27end