From 0725498d6f37c93a697468d3f5d4743861b84542 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 24 Jan 2005 12:05:00 +0000 Subject: Fixed install.rb files git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@487 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/install.rb | 13 ++++++++++--- activerecord/install.rb | 11 ++++++++++- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/actionpack/install.rb b/actionpack/install.rb index 1e55419ee6..d2e4e24ca8 100644 --- a/actionpack/install.rb +++ b/actionpack/install.rb @@ -19,7 +19,8 @@ unless $sitedir end makedirs = %w{ action_controller/assertions action_controller/cgi_ext - action_controller/session action_controller/support action_controller/support/core_ext + action_controller/session action_controller/support action_controller/support/core_ext + action_controller/support/core_ext/hash action_controller/support/core_ext/numeric action_controller/support/core_ext/string action_controller/templates action_controller/templates/rescues action_controller/templates/scaffolds action_view/helpers action_view/vendor action_view/vendor/builder @@ -62,8 +63,14 @@ files = %w- action_controller/support/class_inheritable_attributes.rb action_controller/support/class_attribute_accessors.rb action_controller/support/clean_logger.rb - action_controller/support/core_ext/hash_ext.rb - action_controller/support/core_ext.rb + action_controller/support/core_ext/hash/keys.rb + action_controller/support/core_ext/hash.rb + action_controller/support/core_ext/numeric/bytes.rb + action_controller/support/core_ext/numeric/time.rb + action_controller/support/core_ext/numeric.rb + action_controller/support/core_ext/string/inflections.rb + action_controller/support/core_ext/string.rb + active_record/support/core_ext.rb action_controller/support/inflector.rb action_controller/support/binding_of_caller.rb action_controller/support/breakpoint.rb 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 -- cgit v1.2.3