12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- require File.expand_path('../boot', __FILE__)
- require 'rails/all'
- if defined?(Bundler)
-
- Bundler.require(*Rails.groups(:assets => %w(development test)))
-
-
- end
- module Huginn
- class Application < Rails::Application
-
-
-
-
- config.autoload_paths += %W(#{config.root}/lib)
-
-
-
-
-
-
-
- config.time_zone = 'Pacific Time (US & Canada)'
-
-
-
-
- config.encoding = "utf-8"
-
- config.filter_parameters += [:password]
-
- config.active_support.escape_html_entities_in_json = true
-
-
-
-
-
-
-
-
- config.active_record.whitelist_attributes = true
-
- config.assets.enabled = true
- config.assets.initialize_on_precompile = false
-
- config.assets.version = '1.0'
- end
- end
|