aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/edge_rails.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/edge_rails.rb')
-rw-r--r--railties/test/edge_rails.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/railties/test/edge_rails.rb b/railties/test/edge_rails.rb
new file mode 100644
index 0000000000..bd8a674738
--- /dev/null
+++ b/railties/test/edge_rails.rb
@@ -0,0 +1,14 @@
+require File.expand_path('../../../bundler', __FILE__)
+
+%w(
+ actionmailer
+ actionpack
+ activemodel
+ activerecord
+ activeresource
+ activesupport
+ railties
+).each do |framework|
+ framework_path = File.expand_path("../../../#{framework}/lib", __FILE__)
+ $:.unshift(framework_path) if File.directory?(framework_path) && !$:.include?(framework_path)
+end