2016-12-22 20:00:08 +08: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 GuorenPro
|
|
|
|
class Application < Rails::Application
|
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
2016-12-27 10:46:28 +08:00
|
|
|
config.time_zone = 'Beijing'
|
2016-12-22 20:00:08 +08:00
|
|
|
end
|
|
|
|
end
|