17 lines
355 B
Ruby
17 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
|
|
config.time_zone = "London"
|
|
end
|
|
end
|