Source: show | on GitHub
# File railties/lib/rails/initializable.rb, line 47 47: def +(other) 48: Collection.new(to_a + other.to_a) 49: end
# File railties/lib/rails/initializable.rb, line 43 43: def tsort_each_child(initializer, &block) 44: select { |i| i.before == initializer.name || i.name == initializer.after }.each(&block) 45: end