方法
- G
- N
- P
- R
属性
[RW] | autoload_once_paths | |
[RW] | autoload_paths | |
[RW] | default_scope | |
[RW] | eager_load_paths | |
[RW] | javascript_path | |
[RW] | middleware | |
[R] | root | |
[RW] | route_set_class |
类公共方法
new(root = nil) 链接
来源: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/configuration.rb, line 41 def initialize(root = nil) super() @root = root @generators = app_generators.dup @middleware = Rails::Configuration::MiddlewareStackProxy.new @javascript_path = "javascript" @route_set_class = ActionDispatch::Routing::RouteSet @default_scope = nil @autoload_paths = [] @autoload_once_paths = [] @eager_load_paths = [] end
实例公共方法
generators() 链接
保存生成器配置
config.generators do |g|
g.orm :data_mapper, migration: true
g.template_engine :haml
g.test_framework :rspec
end
如果你想在控制台中禁用颜色,请执行
config.generators.colorize_logging = false
来源: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/configuration.rb, line 67 def generators @generators ||= Rails::Configuration::Generators.new yield(@generators) if block_given? @generators end
paths() 链接
来源: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/configuration.rb, line 73 def paths @paths ||= begin paths = Rails::Paths::Root.new(@root) paths.add "app", eager_load: true, glob: "{*,*/concerns}", exclude: ["assets", javascript_path] paths.add "app/assets", glob: "*" paths.add "app/controllers", eager_load: true paths.add "app/channels", eager_load: true paths.add "app/helpers", eager_load: true paths.add "app/models", eager_load: true paths.add "app/mailers", eager_load: true paths.add "app/views" # If you add more lib subdirectories here that should not be managed # by the main autoloader, please update the config.autoload_lib call # in the template that generates config/application.rb accordingly. paths.add "lib", load_path: true paths.add "lib/assets", glob: "*" paths.add "lib/tasks", glob: "**/*.rake" paths.add "config" paths.add "config/environments", glob: -"#{Rails.env}.rb" paths.add "config/initializers", glob: "**/*.rb" paths.add "config/locales", glob: "**/*.{rb,yml}" paths.add "config/routes.rb" paths.add "config/routes", glob: "**/*.rb" paths.add "db" paths.add "db/migrate" paths.add "db/seeds.rb" paths.add "vendor", load_path: true paths.add "vendor/assets", glob: "*" paths.add "test/mailers/previews", autoload: true paths end end
root=(value) 链接
来源: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/configuration.rb, line 115 def root=(value) @root = paths.path = Pathname.new(value).expand_path end