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

Changeset 6512

Show
Ignore:
Timestamp:
04/09/07 17:34:24 (2 years ago)
Author:
bitsweat
Message:

script/console quotes RAILS_ROOT in irb command line so it works with spaces in the path. Closes #7955.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/lib/commands/console.rb

    r6344 r6512  
    1111 
    1212libs =  " -r irb/completion" 
    13 libs << " -r #{RAILS_ROOT}/config/environment" 
     13libs << %( -r "#{RAILS_ROOT}/config/environment") 
    1414libs << " -r console_app" 
    1515libs << " -r console_sandbox" if options[:sandbox]