方法
包含的模块
属性
[R] | _all |
类公共方法
new() 链接
源代码: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/railties.rb, line 9 def initialize @_all ||= ::Rails::Railtie.subclasses.map(&:instance) + ::Rails::Engine.subclasses.map(&:instance) end
实例公共方法
-(其他) 链接
源代码: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/railties.rb, line 18 def -(others) _all - others end
each(*args, &block) 链接
源代码: 显示 | 在 GitHub 上
# File railties/lib/rails/engine/railties.rb, line 14 def each(*args, &block) _all.each(*args, &block) end