From 18a24274ec823ded4ffa29bf33fd3d76816aab7e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 22 Sep 2007 18:15:05 +0000 Subject: [PATCH] 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 --- actionmailer/lib/actionmailer.rb | 1 + actionpack/lib/actionpack.rb | 1 + actionwebservice/lib/actionwebservice.rb | 1 + activerecord/lib/activerecord.rb | 1 + activeresource/lib/activeresource.rb | 1 + activesupport/lib/activesupport.rb | 1 + 6 files changed, 6 insertions(+) create mode 100644 actionmailer/lib/actionmailer.rb create mode 100644 actionpack/lib/actionpack.rb create mode 100644 actionwebservice/lib/actionwebservice.rb create mode 100644 activerecord/lib/activerecord.rb create mode 100644 activeresource/lib/activeresource.rb create mode 100644 activesupport/lib/activesupport.rb 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'