diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-22 18:15:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-22 18:15:05 +0000 |
commit | 18a24274ec823ded4ffa29bf33fd3d76816aab7e (patch) | |
tree | f89934cd709a0dccb1b033f7d6c6b0c324dfbbd9 | |
parent | 712b71371dcd6bbec6d44ca7f87f6ff31c9e11dd (diff) | |
download | rails-18a24274ec823ded4ffa29bf33fd3d76816aab7e.tar.gz rails-18a24274ec823ded4ffa29bf33fd3d76816aab7e.tar.bz2 rails-18a24274ec823ded4ffa29bf33fd3d76816aab7e.zip |
Allow frameworks to be required by their gem name (closes #8845) [drnic]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7560 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionmailer/lib/actionmailer.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/actionpack.rb | 1 | ||||
-rw-r--r-- | actionwebservice/lib/actionwebservice.rb | 1 | ||||
-rw-r--r-- | activerecord/lib/activerecord.rb | 1 | ||||
-rw-r--r-- | activeresource/lib/activeresource.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/activesupport.rb | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/actionmailer/lib/actionmailer.rb b/actionmailer/lib/actionmailer.rb new file mode 100644 index 0000000000..506416292c --- /dev/null +++ b/actionmailer/lib/actionmailer.rb @@ -0,0 +1 @@ +require 'action_mailer' diff --git a/actionpack/lib/actionpack.rb b/actionpack/lib/actionpack.rb new file mode 100644 index 0000000000..2fe2832f81 --- /dev/null +++ b/actionpack/lib/actionpack.rb @@ -0,0 +1 @@ +require 'action_pack' diff --git a/actionwebservice/lib/actionwebservice.rb b/actionwebservice/lib/actionwebservice.rb new file mode 100644 index 0000000000..25e3aa8e8e --- /dev/null +++ b/actionwebservice/lib/actionwebservice.rb @@ -0,0 +1 @@ +require 'action_web_service' diff --git a/activerecord/lib/activerecord.rb b/activerecord/lib/activerecord.rb new file mode 100644 index 0000000000..cd62b2afdc --- /dev/null +++ b/activerecord/lib/activerecord.rb @@ -0,0 +1 @@ +require 'active_record' diff --git a/activeresource/lib/activeresource.rb b/activeresource/lib/activeresource.rb new file mode 100644 index 0000000000..e076455b16 --- /dev/null +++ b/activeresource/lib/activeresource.rb @@ -0,0 +1 @@ +require 'active_resource' diff --git a/activesupport/lib/activesupport.rb b/activesupport/lib/activesupport.rb new file mode 100644 index 0000000000..69f36f7934 --- /dev/null +++ b/activesupport/lib/activesupport.rb @@ -0,0 +1 @@ +require 'active_support' |