2012-09-23 02:39:12 +00:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
2016-02-05 09:49:59 +00:00
|
|
|
require 'csv'
|
2012-09-23 02:39:12 +00:00
|
|
|
require 'rails/all'
|
2016-01-07 10:47:58 +00:00
|
|
|
require 'dotenv'
|
2012-09-23 02:39:12 +00:00
|
|
|
|
2015-11-03 12:56:50 +00:00
|
|
|
Bundler.require(*Rails.groups)
|
2012-09-23 02:39:12 +00:00
|
|
|
|
2016-01-07 10:47:58 +00:00
|
|
|
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
|
|
|
Dotenv.load ".env.#{ENV["RAILS_ENV"]}", '.env'
|
|
|
|
|
2014-07-30 05:24:20 +00:00
|
|
|
module Metamaps
|
2012-09-23 02:39:12 +00:00
|
|
|
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.
|
|
|
|
|
|
|
|
# Custom directories with classes and modules you want to be autoloadable.
|
2015-12-17 01:10:52 +00:00
|
|
|
config.autoload_paths << Rails.root.join('app', 'services')
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
|
|
|
# Activate observers that should always be running.
|
|
|
|
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|
|
|
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
|
|
|
|
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
|
|
|
config.encoding = "utf-8"
|
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
|
|
|
config.filter_parameters += [:password]
|
|
|
|
|
|
|
|
# Use SQL instead of Active Record's schema dumper when creating the database.
|
|
|
|
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
|
|
# like if you have constraints or database-specific column types
|
|
|
|
# config.active_record.schema_format = :sql
|
|
|
|
|
|
|
|
# Enable the asset pipeline
|
2013-02-04 00:25:08 +00:00
|
|
|
config.assets.initialize_on_precompile = false
|
2014-08-10 23:13:25 +00:00
|
|
|
|
2012-09-23 02:39:12 +00:00
|
|
|
# Version of your assets, change this if you want to expire all your assets
|
2013-02-04 00:52:14 +00:00
|
|
|
config.assets.version = '2.0'
|
2015-10-12 03:37:44 +00:00
|
|
|
|
|
|
|
config.generators do |g|
|
|
|
|
g.test_framework :rspec
|
|
|
|
end
|
2015-09-19 12:01:44 +00:00
|
|
|
config.active_record.raise_in_transactional_callbacks = true
|
2012-09-23 02:39:12 +00:00
|
|
|
end
|
|
|
|
end
|