Sha256: 76a1afe722e61306f999bfa6c45dcdcb043b1b992b2b537a9d6eab28fd20bd4a
Contents?: true
Size: 1.09 KB
Versions: 13
Compression:
Stored size: 1.09 KB
Contents
require File.expand_path('../boot', __FILE__) require "action_controller/railtie" require "action_mailer/railtie" require "sprockets/railtie" Bundler.require(:default, LOLITA_ORM, Rails.env) if defined?(Bundler) module RailsApp class Application < Rails::Application # Add additional load paths for your own custom dirs config.root = File.expand_path('../..',__FILE__) config.active_support.deprecation=:log config.before_initialize do Dir[File.expand_path("../../app/orm/#{LOLITA_ORM}/*.rb", __FILE__)].map do |model| require model end end # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters << :password config.action_mailer.default_url_options = { :host => "localhost:3000" } config.encoding = "utf-8" # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters += [:password] # Enable the asset pipeline config.assets.enabled = true # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.0' end end
Version data entries
13 entries across 13 versions & 1 rubygems