public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Extracted the process scripts (inspector, reaper, spawner) into the plugin 
irs_process_scripts [DHH]
dhh (author)
Sun Nov 30 14:23:20 -0800 2008
commit  3b3c0507e2f67a0f64dc04b396c1d13411ab5890
tree    da78977ec6a75364f9272c9d5a5cb19f02d3f3ed
parent  be140e8c6be966349c6fa35a87f84d5a73995b9a
...
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 *2.3.0 [Edge]*
0
 
0
+* Extracted the process scripts (inspector, reaper, spawner) into the plugin irs_process_scripts [DHH]
0
+
0
 * Changed Rails.root to return a Pathname object (allows for Rails.root.join('app', 'controllers') => "#{RAILS_ROOT}/app/controllers") #1482 [Damian Janowski/?]
0
 
0
 * Added view path support for engines [DHH]
...
53
54
55
56
57
58
59
...
71
72
73
74
 
75
76
77
...
174
175
176
177
178
179
180
181
182
...
53
54
55
 
56
57
58
...
70
71
72
 
73
74
75
76
...
173
174
175
 
 
 
176
177
178
0
@@ -53,7 +53,6 @@ BASE_DIRS = %w(
0
   public
0
   script
0
   script/performance
0
-  script/process
0
   test
0
   vendor
0
   vendor/plugins
0
@@ -71,7 +70,7 @@ LOG_FILES    = %w( server.log development.log test.log production.log )
0
 HTML_FILES   = %w( 422.html 404.html 500.html index.html robots.txt favicon.ico images/rails.png
0
                    javascripts/prototype.js javascripts/application.js
0
                    javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )
0
-BIN_FILES    = %w( about console destroy generate performance/benchmarker performance/profiler process/reaper process/spawner process/inspector runner server plugin )
0
+BIN_FILES    = %w( about console destroy generate performance/benchmarker performance/profiler runner server plugin )
0
 
0
 VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport activeresource railties )
0
 
0
@@ -174,9 +173,6 @@ task :copy_dispatches do
0
 
0
   copy_with_rewritten_ruby_path("dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi")
0
   chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"
0
-
0
-  # copy_with_rewritten_ruby_path("dispatches/gateway.cgi", "#{PKG_DESTINATION}/public/gateway.cgi")
0
-  # chmod 0755, "#{PKG_DESTINATION}/public/gateway.cgi"
0
 end
0
 
0
 task :copy_html_files do
...
85
86
87
88
89
90
91
...
139
140
141
142
143
 
 
144
145
146
...
85
86
87
 
88
89
90
...
138
139
140
 
 
141
142
143
144
145
0
@@ -85,7 +85,6 @@ class AppGenerator < Rails::Generator::Base
0
         public/javascripts
0
         public/stylesheets
0
         script/performance
0
-        script/process
0
         test/fixtures
0
         test/functional
0
         test/integration
0
@@ -139,8 +138,8 @@ class AppGenerator < Rails::Generator::Base
0
     
0
     def create_script_files(m)
0
       %w( 
0
-        about console dbconsole destroy generate performance/benchmarker performance/profiler
0
-        performance/request process/reaper process/spawner process/inspector runner server plugin 
0
+        about console dbconsole destroy generate runner server plugin
0
+        performance/benchmarker performance/profiler performance/request
0
       ).each do |file|
0
         m.file "bin/#{file}", "script/#{file}", { 
0
           :chmod => 0755, 

Comments