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

Changeset 8532

Show
Ignore:
Timestamp:
01/03/08 00:14:47 (5 months ago)
Author:
david
Message:

Added that rails:update is run when you do rails:freeze:edge to ensure you also get the latest JS and config files (closes #10565) [jeff]

Files:

Legend:

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

    r8519 r8532  
    11*SVN* 
     2 
     3* Added that rails:update is run when you do rails:freeze:edge to ensure you also get the latest JS and config files #10565 [jeff] 
    24 
    35* SQLite: db:drop:all doesn't fail silently if the database is already open.  #10577 [Cheah Chu Yeow, mrichman] 
  • trunk/railties/lib/tasks/framework.rake

    r8431 r8532  
    7070        system "svn export #{rails_svn}/#{framework} vendor/rails/#{framework}" + (ENV['REVISION'] ? " -r #{ENV['REVISION']}" : "") 
    7171      end 
     72       
     73      puts "Updating current scripts, javascripts, and configuration settings" 
     74      Rake::Task["rails:update"].invoke 
    7275    end 
    7376  end