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

Changeset 1909

Show
Ignore:
Timestamp:
07/24/05 07:57:10 (3 years ago)
Author:
david
Message:

Added convenience controls for FCGI processes (especially when managed remotely): spinner, spawner, and reaper. They reside in script/process. More details can be had by calling them with -h/--help

Files:

Legend:

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

    r1879 r1909  
    11*SVN* 
     2 
     3* Added convenience controls for FCGI processes (especially when managed remotely): spinner, spawner, and reaper. They reside in script/process. More details can be had by calling them with -h/--help. 
    24 
    35* Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina] 
  • trunk/railties/lib/rails_generator/generators/applications/app/app_generator.rb

    r1876 r1909  
    4343      m.file "environments/test.rb",        "config/environments/test.rb" 
    4444 
    45       # Scripts (tracker listener) 
    46       %w(console destroy generate server runner benchmarker profiler ).each do |file| 
     45      # Scripts 
     46      %w(console destroy generate server runner benchmarker profiler process/reaper process/spinner process/spawner ).each do |file| 
    4747        m.file "bin/#{file}", "script/#{file}", script_options 
    4848      end 
     
    5757      m.file "dispatches/dispatch.rb",   "public/dispatch.cgi", script_options 
    5858      m.file "dispatches/dispatch.fcgi", "public/dispatch.fcgi", script_options 
    59       # m.file "dispatches/gateway.cgi",   "public/gateway.cgi", script_options 
    6059 
    6160      # HTML files 
     
    117116    public/stylesheets 
    118117    script 
     118    script/process 
    119119    test/fixtures 
    120120    test/functional 
  • trunk/railties/Rakefile

    r1876 r1909  
    2727 
    2828 
    29 BASE_DIRS   = %w( app config/environments components db doc log lib public script test vendor ) 
     29BASE_DIRS   = %w( app config/environments components db doc log lib public script script/process test vendor ) 
    3030APP_DIRS    = %w( apis models controllers helpers views views/layouts ) 
    3131PUBLIC_DIRS = %w( images javascripts stylesheets ) 
     
    3434LOG_FILES    = %w( server.log development.log test.log production.log ) 
    3535HTML_FILES   = %w( 404.html 500.html index.html robots.txt favicon.ico javascripts/prototype.js javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js ) 
    36 BIN_FILES    = %w( generate destroy breakpointer console server update runner profiler benchmarker ) # listener tracker 
     36BIN_FILES    = %w( generate destroy breakpointer console server update runner profiler benchmarker process/reaper process/spinner process/spawner ) 
    3737 
    3838VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )