2010-03-08 08:04:05 +00:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
|
|
|
# Pick the frameworks you want:
|
|
|
|
# require "active_record/railtie"
|
|
|
|
require "action_controller/railtie"
|
|
|
|
require "action_mailer/railtie"
|
2011-04-13 10:19:51 +00:00
|
|
|
require "active_resource/railtie"
|
|
|
|
require "rails/test_unit/railtie"
|
2012-02-16 04:16:27 +00:00
|
|
|
require 'sprockets/railtie'
|
2010-03-08 08:04:05 +00:00
|
|
|
|
2011-08-23 11:04:45 +00:00
|
|
|
# If you have a Gemfile, require the default gems, the ones in the
|
|
|
|
# current environment and also include :assets gems if in development
|
|
|
|
# or test environments.
|
|
|
|
Bundler.require *Rails.groups(:assets) if defined?(Bundler)
|
2010-03-08 08:04:05 +00:00
|
|
|
|
2012-03-05 08:19:08 +00:00
|
|
|
module Orbit
|
2010-03-08 08:04:05 +00:00
|
|
|
class Application < Rails::Application
|
2011-04-12 07:21:25 +00:00
|
|
|
|
2011-12-23 10:34:21 +00:00
|
|
|
# Add directories for plugins
|
|
|
|
config.paths["vendor/plugins"] += %W(#{config.root}/vendor/built_in_modules)
|
|
|
|
config.paths["vendor/plugins"] += %W(#{config.root}/vendor/downloaded_modules)
|
2012-03-19 06:04:28 +00:00
|
|
|
config.paths["app/views"] += %W(#{config.root}/app/views/devise)
|
2011-12-23 10:34:21 +00:00
|
|
|
|
2010-03-08 08:04:05 +00: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.
|
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
# Custom directories with classes and modules you want to be autoloadable.
|
|
|
|
# config.autoload_paths += %W(#{config.root}/extras)
|
2013-08-19 10:54:35 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/auth)
|
2013-07-22 09:26:32 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/ckeditor)
|
2011-08-18 05:43:33 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/design)
|
2013-07-22 09:26:32 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/desktop)
|
2012-03-30 07:51:29 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/meta)
|
2011-08-18 05:43:33 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/purchase)
|
|
|
|
config.autoload_paths += %W(#{config.root}/app/models/user)
|
2013-07-22 09:26:32 +00:00
|
|
|
config.autoload_paths += %W(#{config.root}/lib)
|
|
|
|
config.autoload_paths += %W(#{config.root}/lib/parsers)
|
2010-03-08 08:04:05 +00:00
|
|
|
|
2012-10-09 06:47:16 +00:00
|
|
|
# Include all helpers
|
|
|
|
# 'helper :all' must be removed in ApplicationController
|
|
|
|
config.action_controller.include_all_helpers = false
|
2012-06-04 10:00:06 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
2011-04-13 10:19:51 +00:00
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named.
|
2010-03-08 08:04:05 +00:00
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
# Activate observers that should always be running.
|
2010-03-08 08:04:05 +00:00
|
|
|
# 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.
|
2011-04-13 10:19:51 +00:00
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
2010-03-08 08:04:05 +00:00
|
|
|
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
2011-04-13 10:19:51 +00:00
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
2012-12-06 09:27:36 +00:00
|
|
|
config.i18n.load_path += Dir[Rails.root.join('vendor', 'built_in_modules', '*', 'config', 'locales', '*.{rb,yml}').to_s]
|
2012-02-29 08:01:50 +00:00
|
|
|
config.i18n.default_locale = :zh_tw
|
2011-04-13 10:19:51 +00:00
|
|
|
|
|
|
|
# JavaScript files you want as :defaults (application.js is always included).
|
|
|
|
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
2010-03-08 08:04:05 +00:00
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
|
|
|
config.encoding = "utf-8"
|
2010-03-08 08:04:05 +00:00
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
2011-04-13 10:19:51 +00:00
|
|
|
config.filter_parameters += [:password]
|
2011-07-12 08:00:57 +00:00
|
|
|
|
|
|
|
# Enable the asset pipeline
|
2011-08-18 05:43:33 +00:00
|
|
|
config.assets.enabled = true
|
2012-05-08 03:31:35 +00:00
|
|
|
#config.time_zone = 'Taipei'
|
|
|
|
ENV['TZ'] = 'Asia/Taipei'
|
2012-11-28 06:28:41 +00:00
|
|
|
|
|
|
|
config.to_prepare do
|
|
|
|
Devise::RegistrationsController.layout false
|
|
|
|
end
|
2010-03-08 08:04:05 +00:00
|
|
|
end
|
|
|
|
end
|
2011-10-20 02:06:06 +00:00
|
|
|
Orbit_Apps = []
|
2013-04-23 10:48:18 +00:00
|
|
|
VALID_LOCALES = ["en", "zh_tw"]
|