diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-24 12:05:00 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-24 12:05:00 +0000 |
commit | 0725498d6f37c93a697468d3f5d4743861b84542 (patch) | |
tree | ef531eb2d1c630b064cc0f06f515035b14f9ec9d /activerecord | |
parent | 6d7175d6cc9d32900f5f70f2ad166b7672b1251f (diff) | |
download | rails-0725498d6f37c93a697468d3f5d4743861b84542.tar.gz rails-0725498d6f37c93a697468d3f5d4743861b84542.tar.bz2 rails-0725498d6f37c93a697468d3f5d4743861b84542.zip |
Fixed install.rb files
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@487 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/install.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/activerecord/install.rb b/activerecord/install.rb index 6ffb2ef064..0b8f89dfdf 100644 --- a/activerecord/install.rb +++ b/activerecord/install.rb @@ -18,7 +18,7 @@ unless $sitedir end end -makedirs = %w{ active_record/associations active_record/connection_adapters active_record/support active_record/vendor active_record/acts } +makedirs = %w{ active_record/associations active_record/connection_adapters active_record/support active_record/vendor active_record/acts active_record/support/core_ext active_record/support/core_ext/hash active_record/support/core_ext/numeric active_record/support/core_ext/string } makedirs.each {|f| File::makedirs(File.join($sitedir, *f.split(/\//)))} # deprecated files that should be removed @@ -50,8 +50,17 @@ files = %w- active_record/support/class_attribute_accessors.rb active_record/support/class_inheritable_attributes.rb active_record/support/clean_logger.rb + active_record/support/core_ext/hash/keys.rb + active_record/support/core_ext/hash.rb + active_record/support/core_ext/numeric/bytes.rb + active_record/support/core_ext/numeric/time.rb + active_record/support/core_ext/numeric.rb + active_record/support/core_ext/string/inflections.rb + active_record/support/core_ext/string.rb + active_record/support/core_ext.rb active_record/support/inflector.rb active_record/support/misc.rb + active_record/support/module_attribute_accessors.rb active_record/timestamp.rb active_record/transactions.rb active_record/validations.rb |