Changeset 486
- Timestamp:
- 01/24/05 11:59:22 (4 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r482 r486 1 1 *SVN* 2 3 * Fixed that script/breakpointer didn't get the Ruby path rewritten as the other scripts #523 [brandt@kurowski.net] 2 4 3 5 * Fixed superclass mismatch and other controller related problems by not using dependency reloading for controllers. This means that controller trunk/railties/Rakefile
r458 r486 219 219 task :copy_gem_environment do 220 220 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 222 224 end 223 225