Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 486

Show
Ignore:
Timestamp:
01/24/05 11:59:22 (4 years ago)
Author:
david
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/CHANGELOG

    r482 r486  
    11*SVN* 
     2 
     3* Fixed that script/breakpointer didn't get the Ruby path rewritten as the other scripts #523 [brandt@kurowski.net] 
    24 
    35* Fixed superclass mismatch and other controller related problems by not using dependency reloading for controllers. This means that controller 
  • trunk/railties/Rakefile

    r458 r486  
    219219task :copy_gem_environment do 
    220220  cp "environments/shared_for_gem.rb", "#{PKG_DESTINATION}/config/environment.rb" 
    221   cp "bin/breakpointer_for_gem", "#{PKG_DESTINATION}/script/breakpointer" 
     221  dest_file = File.join(PKG_DESTINATION, 'script', 'breakpointer') 
     222  copy_with_rewritten_ruby_path(File.join('bin', 'breakpointer_for_gem'), dest_file) 
     223  chmod 0755, dest_file 
    222224end 
    223225