Changeset 1909
- Timestamp:
- 07/24/05 07:57:10 (3 years ago)
- Files:
-
- trunk/railties/bin/process (added)
- trunk/railties/bin/process/reaper (added)
- trunk/railties/bin/process/spawner (added)
- trunk/railties/bin/process/spinner (added)
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/rails_generator/generators/applications/app/app_generator.rb (modified) (3 diffs)
- trunk/railties/Rakefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r1879 r1909 1 1 *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. 2 4 3 5 * 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 43 43 m.file "environments/test.rb", "config/environments/test.rb" 44 44 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| 47 47 m.file "bin/#{file}", "script/#{file}", script_options 48 48 end … … 57 57 m.file "dispatches/dispatch.rb", "public/dispatch.cgi", script_options 58 58 m.file "dispatches/dispatch.fcgi", "public/dispatch.fcgi", script_options 59 # m.file "dispatches/gateway.cgi", "public/gateway.cgi", script_options60 59 61 60 # HTML files … … 117 116 public/stylesheets 118 117 script 118 script/process 119 119 test/fixtures 120 120 test/functional trunk/railties/Rakefile
r1876 r1909 27 27 28 28 29 BASE_DIRS = %w( app config/environments components db doc log lib public script test vendor )29 BASE_DIRS = %w( app config/environments components db doc log lib public script script/process test vendor ) 30 30 APP_DIRS = %w( apis models controllers helpers views views/layouts ) 31 31 PUBLIC_DIRS = %w( images javascripts stylesheets ) … … 34 34 LOG_FILES = %w( server.log development.log test.log production.log ) 35 35 HTML_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 tracker36 BIN_FILES = %w( generate destroy breakpointer console server update runner profiler benchmarker process/reaper process/spinner process/spawner ) 37 37 38 38 VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )