方法
- #
- T
包含的模块
- TSort
实例公有方法
+(other) 链接
源代码: 显示 | 在 GitHub 上
# File railties/lib/rails/initializable.rb, line 53 def +(other) Collection.new(to_a + other.to_a) end
tsort_each_child(initializer, &block) 链接
源代码: 显示 | 在 GitHub 上
# File railties/lib/rails/initializable.rb, line 49 def tsort_each_child(initializer, &block) select { |i| i.before == initializer.name || i.name == initializer.after }.each(&block) end