| 1 | require File.expand_path('boot', __dir__) |
| 2 | |
| 3 | require 'rails/all' |
| 4 | |
| 5 | # Require the gems listed in Gemfile, including any gems |
| 6 | # you've limited to :test, :development, or :production. |
| 7 | Bundler.require(*Rails.groups) |
| 8 | |
| 9 | module Musik88 |
| 10 | class Application < Rails::Application |
| 11 | # Settings in config/environments/* take precedence over those specified here. |
| 12 | # Application configuration should go into files in config/initializers |
| 13 | # -- all .rb files in that directory are automatically loaded. |
| 14 | |
| 15 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. |
| 16 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. |
| 17 | # config.time_zone = 'Central Time (US & Canada)' |
| 18 | |
| 19 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. |
| 20 | config.generators.javascript_engine = :js |
| 21 | config.exceptions_app = routes |
| 22 | end |
| 23 | end |