Soc/config/application.rb

17 lines
355 B
Ruby
Raw Normal View History

2023-08-18 16:20:31 +00:00
# frozen_string_literal: true
2023-08-18 16:20:31 +00:00
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 SummonPlayer
class Application < Rails::Application
config.load_defaults 7.0
2023-08-18 16:20:31 +00:00
config.time_zone = "London"
end
end