Fixed install.rb files

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@487 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-24 12:05:00 +00:00
parent 6d7175d6cc
commit 0725498d6f
2 changed files with 20 additions and 4 deletions

View File

@ -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

View File

@ -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