2017-06-23 21:19:08 +08:00
|
|
|
require_relative 'boot'
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
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 Scinote
|
|
|
|
class Application < Rails::Application
|
2017-06-23 21:19:08 +08:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
config.load_defaults 5.1
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# 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.
|
|
|
|
|
2017-11-16 22:50:30 +08:00
|
|
|
# Load all model concerns, including subfolders
|
|
|
|
config.autoload_paths += Dir["#{Rails.root}/app/models/concerns/**/*.rb"]
|
|
|
|
|
2017-04-13 23:00:27 +08:00
|
|
|
config.encoding = 'utf-8'
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
config.active_job.queue_adapter = :delayed_job
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
config.log_formatter = proc do |severity, datetime, progname, msg|
|
|
|
|
"[#{datetime}] #{severity}: #{msg}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Paperclip spoof checking
|
2016-09-23 17:42:12 +08:00
|
|
|
Paperclip.options[:content_type_mappings] = {
|
|
|
|
csv: 'text/plain',
|
|
|
|
wopitest: ['text/plain', 'inode/x-empty']
|
|
|
|
}
|
2017-07-10 15:26:35 +08:00
|
|
|
|
|
|
|
# sciNote Core Application version
|
|
|
|
VERSION = File.read(Rails.root.join('VERSION')).strip.freeze
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
end
|