1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed that script/breakpointer didn't get the Ruby path rewritten as the other scripts #523 [brandt@kurowski.net]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@486 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-24 11:59:22 +00:00
parent 872ddaf290
commit 6d7175d6cc
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed that script/breakpointer didn't get the Ruby path rewritten as the other scripts #523 [brandt@kurowski.net]
* Fixed superclass mismatch and other controller related problems by not using dependency reloading for controllers. This means that controller
hierarchies need to explicitly require the superclass if its not ApplicationController. Example:

View file

@ -218,7 +218,9 @@ end
task :copy_gem_environment do
cp "environments/shared_for_gem.rb", "#{PKG_DESTINATION}/config/environment.rb"
cp "bin/breakpointer_for_gem", "#{PKG_DESTINATION}/script/breakpointer"
dest_file = File.join(PKG_DESTINATION, 'script', 'breakpointer')
copy_with_rewritten_ruby_path(File.join('bin', 'breakpointer_for_gem'), dest_file)
chmod 0755, dest_file
end