方法
- #
- 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