aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures
diff options
context:
space:
mode:
authorTom Ward <tom@popdog.net>2008-08-19 13:19:41 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-08-22 13:06:34 +0100
commit89d1c77dd012f087c091e0f23874c582ea4e3703 (patch)
tree94732218057b59da6eff36a7fadbfada9248c816 /railties/test/fixtures
parent683ff235e6b81d28962f5a71ff53730a1c118fc8 (diff)
downloadrails-89d1c77dd012f087c091e0f23874c582ea4e3703.tar.gz
rails-89d1c77dd012f087c091e0f23874c582ea4e3703.tar.bz2
rails-89d1c77dd012f087c091e0f23874c582ea4e3703.zip
Initializer to sort files before eager loading. [#859 state:resolved]
Changed Rails::Initializer to sort files before eager loading them. This ensures that any files in a parent directory will be loaded before files in a subdirectory of the 'same' name. i.e. zoo.rb will be loaded before zoo/reptile_house.rb Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'railties/test/fixtures')
-rw-r--r--railties/test/fixtures/eager/zoo.rb3
-rw-r--r--railties/test/fixtures/eager/zoo/reptile_house.rb2
2 files changed, 5 insertions, 0 deletions
diff --git a/railties/test/fixtures/eager/zoo.rb b/railties/test/fixtures/eager/zoo.rb
new file mode 100644
index 0000000000..8b10ef984b
--- /dev/null
+++ b/railties/test/fixtures/eager/zoo.rb
@@ -0,0 +1,3 @@
+class Zoo
+ include ReptileHouse
+end \ No newline at end of file
diff --git a/railties/test/fixtures/eager/zoo/reptile_house.rb b/railties/test/fixtures/eager/zoo/reptile_house.rb
new file mode 100644
index 0000000000..82bbafce79
--- /dev/null
+++ b/railties/test/fixtures/eager/zoo/reptile_house.rb
@@ -0,0 +1,2 @@
+module Zoo::ReptileHouse
+end \ No newline at end of file