aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/rails.rb
blob: 8c2b7f9bdedb7e9ded1ec409215170acd93be6fc (plain) (blame)
1
2
3
4
5
6
7
8
$VERBOSE = nil

# Load Rails rakefile extensions
Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext }

# Load any custom rakefile extensions
Dir["#{RAILS_ROOT}/vendor/plugins/*/**/tasks/**/*.rake"].sort.each { |ext| load ext }
Dir["#{RAILS_ROOT}/lib/tasks/**/*.rake"].sort.each { |ext| load ext }