rails 2.2.3 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (229) hide show
  1. data/CHANGELOG +272 -191
  2. data/MIT-LICENSE +1 -1
  3. data/README +6 -19
  4. data/Rakefile +24 -71
  5. data/bin/rails +1 -0
  6. data/builtin/rails_info/rails/info.rb +12 -8
  7. data/configs/databases/mysql.yml +3 -0
  8. data/configs/initializers/backtrace_silencers.rb +7 -0
  9. data/configs/initializers/new_rails_defaults.rb +2 -0
  10. data/configs/initializers/session_store.rb +15 -0
  11. data/dispatches/config.ru +7 -0
  12. data/doc/README_FOR_APP +2 -5
  13. data/environments/boot.rb +1 -0
  14. data/environments/environment.rb +14 -48
  15. data/environments/production.rb +11 -7
  16. data/environments/test.rb +6 -0
  17. data/helpers/application_controller.rb +10 -0
  18. data/helpers/test_helper.rb +1 -1
  19. data/html/500.html +0 -3
  20. data/html/index.html +1 -0
  21. data/lib/commands/about.rb +1 -1
  22. data/lib/commands/dbconsole.rb +18 -2
  23. data/lib/commands/plugin.rb +4 -3
  24. data/lib/commands/runner.rb +13 -7
  25. data/lib/commands/server.rb +98 -33
  26. data/lib/console_app.rb +4 -4
  27. data/lib/console_with_helpers.rb +2 -23
  28. data/lib/dispatcher.rb +1 -1
  29. data/lib/fcgi_handler.rb +12 -10
  30. data/lib/initializer.rb +108 -41
  31. data/lib/rails/backtrace_cleaner.rb +54 -0
  32. data/lib/rails/gem_dependency.rb +124 -94
  33. data/lib/rails/plugin.rb +49 -6
  34. data/lib/rails/plugin/loader.rb +66 -27
  35. data/lib/rails/plugin/locator.rb +1 -1
  36. data/lib/rails/rack.rb +3 -1
  37. data/lib/rails/rack/debugger.rb +21 -0
  38. data/lib/rails/rack/log_tailer.rb +35 -0
  39. data/lib/rails/rack/metal.rb +51 -0
  40. data/lib/rails/rack/static.rb +15 -4
  41. data/lib/rails/version.rb +2 -2
  42. data/lib/rails_generator/base.rb +3 -0
  43. data/lib/rails_generator/commands.rb +8 -3
  44. data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
  45. data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  46. data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  47. data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  48. data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  49. data/lib/rails_generator/generators/components/controller/USAGE +12 -11
  50. data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
  51. data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  52. data/lib/rails_generator/generators/components/helper/USAGE +24 -0
  53. data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  54. data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  55. data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  56. data/lib/rails_generator/generators/components/metal/USAGE +8 -0
  57. data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  58. data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  59. data/lib/rails_generator/generators/components/resource/USAGE +2 -2
  60. data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
  61. data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  62. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
  63. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
  64. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
  65. data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  66. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  67. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
  68. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
  69. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
  70. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
  71. data/lib/rails_generator/secret_key_generator.rb +2 -0
  72. data/lib/tasks/databases.rake +13 -6
  73. data/lib/tasks/documentation.rake +2 -9
  74. data/lib/tasks/framework.rake +26 -1
  75. data/lib/tasks/gems.rake +33 -48
  76. data/lib/tasks/middleware.rake +7 -0
  77. data/lib/tasks/misc.rake +7 -0
  78. data/lib/tasks/statistics.rake +0 -1
  79. data/lib/tasks/testing.rake +5 -5
  80. data/lib/tasks/tmp.rake +2 -2
  81. data/lib/test_help.rb +16 -8
  82. metadata +92 -159
  83. data/bin/performance/request +0 -3
  84. data/bin/process/inspector +0 -3
  85. data/bin/process/reaper +0 -3
  86. data/bin/process/spawner +0 -3
  87. data/config.ru +0 -17
  88. data/configs/apache.conf +0 -40
  89. data/configs/lighttpd.conf +0 -54
  90. data/doc/guides/html/2_2_release_notes.html +0 -1185
  91. data/doc/guides/html/actioncontroller_basics.html +0 -1270
  92. data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
  93. data/doc/guides/html/association_basics.html +0 -2585
  94. data/doc/guides/html/authors.html +0 -240
  95. data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
  96. data/doc/guides/html/caching_with_rails.html +0 -583
  97. data/doc/guides/html/command_line.html +0 -434
  98. data/doc/guides/html/configuring.html +0 -438
  99. data/doc/guides/html/creating_plugins.html +0 -1594
  100. data/doc/guides/html/debugging_rails_applications.html +0 -1175
  101. data/doc/guides/html/finders.html +0 -1090
  102. data/doc/guides/html/form_helpers.html +0 -638
  103. data/doc/guides/html/getting_started_with_rails.html +0 -2066
  104. data/doc/guides/html/index.html +0 -349
  105. data/doc/guides/html/layouts_and_rendering.html +0 -1406
  106. data/doc/guides/html/migrations.html +0 -921
  107. data/doc/guides/html/routing_outside_in.html +0 -2213
  108. data/doc/guides/html/security.html +0 -1346
  109. data/doc/guides/html/testing_rails_applications.html +0 -1859
  110. data/doc/guides/source/2_2_release_notes.txt +0 -435
  111. data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
  112. data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
  113. data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
  114. data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
  115. data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
  116. data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
  117. data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
  118. data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
  119. data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
  120. data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
  121. data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
  122. data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
  123. data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
  124. data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
  125. data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
  126. data/doc/guides/source/active_record_basics.txt +0 -181
  127. data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
  128. data/doc/guides/source/association_basics.txt +0 -1840
  129. data/doc/guides/source/authors.txt +0 -39
  130. data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
  131. data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
  132. data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
  133. data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
  134. data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
  135. data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
  136. data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
  137. data/doc/guides/source/caching_with_rails.txt +0 -367
  138. data/doc/guides/source/command_line.txt +0 -147
  139. data/doc/guides/source/configuring.txt +0 -225
  140. data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
  141. data/doc/guides/source/creating_plugins/appendix.txt +0 -46
  142. data/doc/guides/source/creating_plugins/controllers.txt +0 -59
  143. data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
  144. data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
  145. data/doc/guides/source/creating_plugins/gem.txt +0 -1
  146. data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
  147. data/doc/guides/source/creating_plugins/helpers.txt +0 -51
  148. data/doc/guides/source/creating_plugins/index.txt +0 -52
  149. data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
  150. data/doc/guides/source/creating_plugins/models.txt +0 -76
  151. data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
  152. data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
  153. data/doc/guides/source/debugging_rails_applications.txt +0 -733
  154. data/doc/guides/source/finders.txt +0 -668
  155. data/doc/guides/source/form_helpers.txt +0 -345
  156. data/doc/guides/source/getting_started_with_rails.txt +0 -1256
  157. data/doc/guides/source/images/belongs_to.png +0 -0
  158. data/doc/guides/source/images/bullet.gif +0 -0
  159. data/doc/guides/source/images/csrf.png +0 -0
  160. data/doc/guides/source/images/habtm.png +0 -0
  161. data/doc/guides/source/images/has_many.png +0 -0
  162. data/doc/guides/source/images/has_many_through.png +0 -0
  163. data/doc/guides/source/images/has_one.png +0 -0
  164. data/doc/guides/source/images/has_one_through.png +0 -0
  165. data/doc/guides/source/images/header_backdrop.png +0 -0
  166. data/doc/guides/source/images/icons/README +0 -5
  167. data/doc/guides/source/images/icons/callouts/1.png +0 -0
  168. data/doc/guides/source/images/icons/callouts/10.png +0 -0
  169. data/doc/guides/source/images/icons/callouts/11.png +0 -0
  170. data/doc/guides/source/images/icons/callouts/12.png +0 -0
  171. data/doc/guides/source/images/icons/callouts/13.png +0 -0
  172. data/doc/guides/source/images/icons/callouts/14.png +0 -0
  173. data/doc/guides/source/images/icons/callouts/15.png +0 -0
  174. data/doc/guides/source/images/icons/callouts/2.png +0 -0
  175. data/doc/guides/source/images/icons/callouts/3.png +0 -0
  176. data/doc/guides/source/images/icons/callouts/4.png +0 -0
  177. data/doc/guides/source/images/icons/callouts/5.png +0 -0
  178. data/doc/guides/source/images/icons/callouts/6.png +0 -0
  179. data/doc/guides/source/images/icons/callouts/7.png +0 -0
  180. data/doc/guides/source/images/icons/callouts/8.png +0 -0
  181. data/doc/guides/source/images/icons/callouts/9.png +0 -0
  182. data/doc/guides/source/images/icons/caution.png +0 -0
  183. data/doc/guides/source/images/icons/example.png +0 -0
  184. data/doc/guides/source/images/icons/home.png +0 -0
  185. data/doc/guides/source/images/icons/important.png +0 -0
  186. data/doc/guides/source/images/icons/next.png +0 -0
  187. data/doc/guides/source/images/icons/note.png +0 -0
  188. data/doc/guides/source/images/icons/prev.png +0 -0
  189. data/doc/guides/source/images/icons/tip.png +0 -0
  190. data/doc/guides/source/images/icons/up.png +0 -0
  191. data/doc/guides/source/images/icons/warning.png +0 -0
  192. data/doc/guides/source/images/polymorphic.png +0 -0
  193. data/doc/guides/source/images/rails_logo_remix.gif +0 -0
  194. data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
  195. data/doc/guides/source/images/session_fixation.png +0 -0
  196. data/doc/guides/source/index.txt +0 -118
  197. data/doc/guides/source/layouts_and_rendering.txt +0 -982
  198. data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
  199. data/doc/guides/source/migrations/changelog.txt +0 -5
  200. data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
  201. data/doc/guides/source/migrations/foreign_keys.txt +0 -8
  202. data/doc/guides/source/migrations/index.txt +0 -22
  203. data/doc/guides/source/migrations/rakeing_around.txt +0 -111
  204. data/doc/guides/source/migrations/scheming.txt +0 -47
  205. data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
  206. data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
  207. data/doc/guides/source/routing_outside_in.txt +0 -986
  208. data/doc/guides/source/security.txt +0 -984
  209. data/doc/guides/source/stylesheets/base.css +0 -358
  210. data/doc/guides/source/stylesheets/forms.css +0 -35
  211. data/doc/guides/source/stylesheets/more.css +0 -82
  212. data/doc/guides/source/templates/guides.html.erb +0 -97
  213. data/doc/guides/source/templates/inline.css +0 -165
  214. data/doc/guides/source/testing_rails_applications.txt +0 -995
  215. data/helpers/application.rb +0 -15
  216. data/lib/commands/performance/request.rb +0 -6
  217. data/lib/commands/process/inspector.rb +0 -68
  218. data/lib/commands/process/reaper.rb +0 -149
  219. data/lib/commands/process/spawner.rb +0 -219
  220. data/lib/commands/process/spinner.rb +0 -57
  221. data/lib/commands/servers/base.rb +0 -31
  222. data/lib/commands/servers/lighttpd.rb +0 -94
  223. data/lib/commands/servers/mongrel.rb +0 -69
  224. data/lib/commands/servers/new_mongrel.rb +0 -16
  225. data/lib/commands/servers/thin.rb +0 -25
  226. data/lib/commands/servers/webrick.rb +0 -66
  227. data/lib/rails/mongrel_server/commands.rb +0 -342
  228. data/lib/rails/mongrel_server/handler.rb +0 -55
  229. data/lib/rails/rack/logger.rb +0 -28
@@ -1,15 +0,0 @@
1
- # Filters added to this controller apply to all controllers in the application.
2
- # Likewise, all the methods added will be available for all controllers.
3
-
4
- class ApplicationController < ActionController::Base
5
- helper :all # include all helpers, all the time
6
-
7
- # See ActionController::RequestForgeryProtection for details
8
- # Uncomment the :secret if you're not using the cookie session store
9
- protect_from_forgery # :secret => '<%= app_secret %>'
10
-
11
- # See ActionController::Base for details
12
- # Uncomment this to filter the contents of submitted sensitive data parameters
13
- # from your application log (in this case, all fields with names like "password").
14
- # filter_parameter_logging :password
15
- end
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'config/environment'
3
- require 'application'
4
- require 'action_controller/request_profiler'
5
-
6
- ActionController::RequestProfiler.run(ARGV)
@@ -1,68 +0,0 @@
1
- require 'optparse'
2
-
3
- if RUBY_PLATFORM =~ /(:?mswin|mingw)/ then abort("Inspector is only for Unix") end
4
-
5
- OPTIONS = {
6
- :pid_path => File.expand_path(RAILS_ROOT + '/tmp/pids'),
7
- :pattern => "dispatch.*.pid",
8
- :ps => "ps -o pid,state,user,start,time,pcpu,vsz,majflt,command -p %s"
9
- }
10
-
11
- class Inspector
12
- def self.inspect(pid_path, pattern)
13
- new(pid_path, pattern).inspect
14
- end
15
-
16
- def initialize(pid_path, pattern)
17
- @pid_path, @pattern = pid_path, pattern
18
- end
19
-
20
- def inspect
21
- header = `#{OPTIONS[:ps] % 1}`.split("\n")[0] + "\n"
22
- lines = pids.collect { |pid| `#{OPTIONS[:ps] % pid}`.split("\n")[1] }
23
-
24
- puts(header + lines.join("\n"))
25
- end
26
-
27
- private
28
- def pids
29
- pid_files.collect do |pid_file|
30
- File.read(pid_file).to_i
31
- end
32
- end
33
-
34
- def pid_files
35
- Dir.glob(@pid_path + "/" + @pattern)
36
- end
37
- end
38
-
39
-
40
- ARGV.options do |opts|
41
- opts.banner = "Usage: inspector [options]"
42
-
43
- opts.separator ""
44
-
45
- opts.on <<-EOF
46
- Description:
47
- Displays system information about Rails dispatchers (or other processes that use pid files) through
48
- the ps command.
49
-
50
- Examples:
51
- inspector # default ps on all tmp/pids/dispatch.*.pid files
52
- inspector -s 'ps -o user,start,majflt,pcpu,vsz -p %s' # custom ps, %s is where the pid is interleaved
53
- EOF
54
-
55
- opts.on(" Options:")
56
-
57
- opts.on("-s", "--ps=command", "default: #{OPTIONS[:ps]}", String) { |v| OPTIONS[:ps] = v }
58
- opts.on("-p", "--pidpath=path", "default: #{OPTIONS[:pid_path]}", String) { |v| OPTIONS[:pid_path] = v }
59
- opts.on("-r", "--pattern=pattern", "default: #{OPTIONS[:pattern]}", String) { |v| OPTIONS[:pattern] = v }
60
-
61
- opts.separator ""
62
-
63
- opts.on("-h", "--help", "Show this help message.") { puts opts; exit }
64
-
65
- opts.parse!
66
- end
67
-
68
- Inspector.inspect(OPTIONS[:pid_path], OPTIONS[:pattern])
@@ -1,149 +0,0 @@
1
- require 'optparse'
2
- require 'net/http'
3
- require 'uri'
4
-
5
- if RUBY_PLATFORM =~ /(:?mswin|mingw)/ then abort("Reaper is only for Unix") end
6
-
7
- class Killer
8
- class << self
9
- # Searches for all processes matching the given keywords, and then invokes
10
- # a specific action on each of them. This is useful for (e.g.) reloading a
11
- # set of processes:
12
- #
13
- # Killer.process(:reload, "/tmp/pids", "dispatcher.*.pid")
14
- def process(action, pid_path, pattern, keyword)
15
- new(pid_path, pattern, keyword).process(action)
16
- end
17
-
18
- # Forces the (rails) application to reload by sending a +HUP+ signal to the
19
- # process.
20
- def reload(pid)
21
- `kill -s HUP #{pid}`
22
- end
23
-
24
- # Force the (rails) application to restart by sending a +USR2+ signal to the
25
- # process.
26
- def restart(pid)
27
- `kill -s USR2 #{pid}`
28
- end
29
-
30
- # Forces the (rails) application to gracefully terminate by sending a
31
- # +TERM+ signal to the process.
32
- def graceful(pid)
33
- `kill -s TERM #{pid}`
34
- end
35
-
36
- # Forces the (rails) application to terminate immediately by sending a -9
37
- # signal to the process.
38
- def kill(pid)
39
- `kill -9 #{pid}`
40
- end
41
-
42
- # Send a +USR1+ signal to the process.
43
- def usr1(pid)
44
- `kill -s USR1 #{pid}`
45
- end
46
- end
47
-
48
- def initialize(pid_path, pattern, keyword=nil)
49
- @pid_path, @pattern, @keyword = pid_path, pattern, keyword
50
- end
51
-
52
- def process(action)
53
- pids = find_processes
54
-
55
- if pids.empty?
56
- warn "Couldn't find any pid file in '#{@pid_path}' matching '#{@pattern}'"
57
- warn "(also looked for processes matching #{@keyword.inspect})" if @keyword
58
- else
59
- pids.each do |pid|
60
- puts "#{action.capitalize}ing #{pid}"
61
- self.class.send(action, pid)
62
- end
63
-
64
- delete_pid_files if terminating?(action)
65
- end
66
- end
67
-
68
- private
69
- def terminating?(action)
70
- [ "kill", "graceful" ].include?(action)
71
- end
72
-
73
- def find_processes
74
- files = pid_files
75
- if files.empty?
76
- find_processes_via_grep
77
- else
78
- files.collect { |pid_file| File.read(pid_file).to_i }
79
- end
80
- end
81
-
82
- def find_processes_via_grep
83
- lines = `ps axww -o 'pid command' | grep #{@keyword}`.split(/\n/).
84
- reject { |line| line =~ /inq|ps axww|grep|spawn-fcgi|spawner|reaper/ }
85
- lines.map { |line| line[/^\s*(\d+)/, 1].to_i }
86
- end
87
-
88
- def delete_pid_files
89
- pid_files.each { |pid_file| File.delete(pid_file) }
90
- end
91
-
92
- def pid_files
93
- Dir.glob(@pid_path + "/" + @pattern)
94
- end
95
- end
96
-
97
-
98
- OPTIONS = {
99
- :action => "restart",
100
- :pid_path => File.expand_path(RAILS_ROOT + '/tmp/pids'),
101
- :pattern => "dispatch.[0-9]*.pid",
102
- :dispatcher => File.expand_path("#{RAILS_ROOT}/public/dispatch.fcgi")
103
- }
104
-
105
- ARGV.options do |opts|
106
- opts.banner = "Usage: reaper [options]"
107
-
108
- opts.separator ""
109
-
110
- opts.on <<-EOF
111
- Description:
112
- The reaper is used to restart, reload, gracefully exit, and forcefully exit processes
113
- running a Rails Dispatcher (or any other process responding to the same signals). This
114
- is commonly done when a new version of the application is available, so the existing
115
- processes can be updated to use the latest code.
116
-
117
- It uses pid files to work on the processes and by default assume them to be located
118
- in RAILS_ROOT/tmp/pids.
119
-
120
- The reaper actions are:
121
-
122
- * restart : Restarts the application by reloading both application and framework code
123
- * reload : Only reloads the application, but not the framework (like the development environment)
124
- * graceful: Marks all of the processes for exit after the next request
125
- * kill : Forcefully exists all processes regardless of whether they're currently serving a request
126
-
127
- Restart is the most common and default action.
128
-
129
- Examples:
130
- reaper # restarts the default dispatchers
131
- reaper -a reload # reload the default dispatchers
132
- reaper -a kill -r *.pid # kill all processes that keep pids in tmp/pids
133
- EOF
134
-
135
- opts.on(" Options:")
136
-
137
- opts.on("-a", "--action=name", "reload|graceful|kill (default: #{OPTIONS[:action]})", String) { |v| OPTIONS[:action] = v }
138
- opts.on("-p", "--pidpath=path", "default: #{OPTIONS[:pid_path]}", String) { |v| OPTIONS[:pid_path] = v }
139
- opts.on("-r", "--pattern=pattern", "default: #{OPTIONS[:pattern]}", String) { |v| OPTIONS[:pattern] = v }
140
- opts.on("-d", "--dispatcher=path", "DEPRECATED. default: #{OPTIONS[:dispatcher]}", String) { |v| OPTIONS[:dispatcher] = v }
141
-
142
- opts.separator ""
143
-
144
- opts.on("-h", "--help", "Show this help message.") { puts opts; exit }
145
-
146
- opts.parse!
147
- end
148
-
149
- Killer.process(OPTIONS[:action], OPTIONS[:pid_path], OPTIONS[:pattern], OPTIONS[:dispatcher])
@@ -1,219 +0,0 @@
1
- require 'active_support'
2
- require 'optparse'
3
- require 'socket'
4
- require 'fileutils'
5
-
6
- def daemonize #:nodoc:
7
- exit if fork # Parent exits, child continues.
8
- Process.setsid # Become session leader.
9
- exit if fork # Zap session leader. See [1].
10
- Dir.chdir "/" # Release old working directory.
11
- File.umask 0000 # Ensure sensible umask. Adjust as needed.
12
- STDIN.reopen "/dev/null" # Free file descriptors and
13
- STDOUT.reopen "/dev/null", "a" # point them somewhere sensible.
14
- STDERR.reopen STDOUT # STDOUT/ERR should better go to a logfile.
15
- end
16
-
17
- class Spawner
18
- def self.record_pid(name = "#{OPTIONS[:process]}.spawner", id = Process.pid)
19
- FileUtils.mkdir_p(OPTIONS[:pids])
20
- File.open(File.expand_path(OPTIONS[:pids] + "/#{name}.pid"), "w+") { |f| f.write(id) }
21
- end
22
-
23
- def self.spawn_all
24
- OPTIONS[:instances].times do |i|
25
- port = OPTIONS[:port] + i
26
- print "Checking if something is already running on #{OPTIONS[:address]}:#{port}..."
27
-
28
- begin
29
- srv = TCPServer.new(OPTIONS[:address], port)
30
- srv.close
31
- srv = nil
32
-
33
- puts "NO"
34
- puts "Starting dispatcher on port: #{OPTIONS[:address]}:#{port}"
35
-
36
- FileUtils.mkdir_p(OPTIONS[:pids])
37
- spawn(port)
38
- rescue
39
- puts "YES"
40
- end
41
- end
42
- end
43
- end
44
-
45
- class FcgiSpawner < Spawner
46
- def self.spawn(port)
47
- cmd = "#{OPTIONS[:spawner]} -f #{OPTIONS[:dispatcher]} -p #{port} -P #{OPTIONS[:pids]}/#{OPTIONS[:process]}.#{port}.pid"
48
- cmd << " -a #{OPTIONS[:address]}" if can_bind_to_custom_address?
49
- system(cmd)
50
- end
51
-
52
- def self.can_bind_to_custom_address?
53
- @@can_bind_to_custom_address ||= /^\s-a\s/.match `#{OPTIONS[:spawner]} -h`
54
- end
55
- end
56
-
57
- class MongrelSpawner < Spawner
58
- def self.spawn(port)
59
- cmd =
60
- "mongrel_rails start -d " +
61
- "-a #{OPTIONS[:address]} " +
62
- "-p #{port} " +
63
- "-P #{OPTIONS[:pids]}/#{OPTIONS[:process]}.#{port}.pid " +
64
- "-e #{OPTIONS[:environment]} " +
65
- "-c #{OPTIONS[:rails_root]} " +
66
- "-l #{OPTIONS[:rails_root]}/log/mongrel.log"
67
-
68
- # Add prefix functionality to spawner's call to mongrel_rails
69
- # Digging through mongrel's project subversion server, the earliest
70
- # Tag that has prefix implemented in the bin/mongrel_rails file
71
- # is 0.3.15 which also happens to be the earliest tag listed.
72
- # References: http://mongrel.rubyforge.org/svn/tags
73
- if Mongrel::Const::MONGREL_VERSION.to_f >=0.3 && !OPTIONS[:prefix].nil?
74
- cmd = cmd + " --prefix #{OPTIONS[:prefix]}"
75
- end
76
- system(cmd)
77
- end
78
-
79
- def self.can_bind_to_custom_address?
80
- true
81
- end
82
- end
83
-
84
-
85
- begin
86
- require_library_or_gem 'fcgi'
87
- rescue Exception
88
- # FCGI not available
89
- end
90
-
91
- begin
92
- require_library_or_gem 'mongrel'
93
- rescue Exception
94
- # Mongrel not available
95
- end
96
-
97
- server = case ARGV.first
98
- when "fcgi", "mongrel"
99
- ARGV.shift
100
- else
101
- if defined?(Mongrel)
102
- "mongrel"
103
- elsif RUBY_PLATFORM !~ /(:?mswin|mingw)/ && !silence_stderr { `spawn-fcgi -version` }.blank? && defined?(FCGI)
104
- "fcgi"
105
- end
106
- end
107
-
108
- case server
109
- when "fcgi"
110
- puts "=> Starting FCGI dispatchers"
111
- spawner_class = FcgiSpawner
112
- when "mongrel"
113
- puts "=> Starting mongrel dispatchers"
114
- spawner_class = MongrelSpawner
115
- else
116
- puts "Neither FCGI (spawn-fcgi) nor Mongrel was installed and available!"
117
- exit(0)
118
- end
119
-
120
-
121
-
122
- OPTIONS = {
123
- :environment => "production",
124
- :spawner => '/usr/bin/env spawn-fcgi',
125
- :dispatcher => File.expand_path(RELATIVE_RAILS_ROOT + '/public/dispatch.fcgi'),
126
- :pids => File.expand_path(RELATIVE_RAILS_ROOT + "/tmp/pids"),
127
- :rails_root => File.expand_path(RELATIVE_RAILS_ROOT),
128
- :process => "dispatch",
129
- :port => 8000,
130
- :address => '0.0.0.0',
131
- :instances => 3,
132
- :repeat => nil,
133
- :prefix => nil
134
- }
135
-
136
- ARGV.options do |opts|
137
- opts.banner = "Usage: spawner [platform] [options]"
138
-
139
- opts.separator ""
140
-
141
- opts.on <<-EOF
142
- Description:
143
- The spawner is a wrapper for spawn-fcgi and mongrel that makes it
144
- easier to start multiple processes running the Rails dispatcher. The
145
- spawn-fcgi command is included with the lighttpd web server, but can
146
- be used with both Apache and lighttpd (and any other web server
147
- supporting externally managed FCGI processes). Mongrel automatically
148
- ships with with mongrel_rails for starting dispatchers.
149
-
150
- The first choice you need to make is whether to spawn the Rails
151
- dispatchers as FCGI or Mongrel. By default, this spawner will prefer
152
- Mongrel, so if that's installed, and no platform choice is made,
153
- Mongrel is used.
154
-
155
- Then decide a starting port (default is 8000) and the number of FCGI
156
- process instances you'd like to run. So if you pick 9100 and 3
157
- instances, you'll start processes on 9100, 9101, and 9102.
158
-
159
- By setting the repeat option, you get a protection loop, which will
160
- attempt to restart any FCGI processes that might have been exited or
161
- outright crashed.
162
-
163
- You can select bind address for started processes. By default these
164
- listen on every interface. For single machine installations you would
165
- probably want to use 127.0.0.1, hiding them form the outside world.
166
-
167
- Examples:
168
- spawner # starts instances on 8000, 8001, and 8002
169
- # using Mongrel if available.
170
- spawner fcgi # starts instances on 8000, 8001, and 8002
171
- # using FCGI.
172
- spawner mongrel -i 5 # starts instances on 8000, 8001, 8002,
173
- # 8003, and 8004 using Mongrel.
174
- spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to
175
- # 9109 using Mongrel if available.
176
- spawner -p 9100 -r 5 # starts 3 instances counting from 9100 to
177
- # 9102 and attempts start them every 5
178
- # seconds.
179
- spawner -a 127.0.0.1 # starts 3 instances binding to localhost
180
- EOF
181
-
182
- opts.on(" Options:")
183
-
184
- opts.on("-p", "--port=number", Integer, "Starting port number (default: #{OPTIONS[:port]})") { |v| OPTIONS[:port] = v }
185
-
186
- if spawner_class.can_bind_to_custom_address?
187
- opts.on("-a", "--address=ip", String, "Bind to IP address (default: #{OPTIONS[:address]})") { |v| OPTIONS[:address] = v }
188
- end
189
-
190
- opts.on("-p", "--port=number", Integer, "Starting port number (default: #{OPTIONS[:port]})") { |v| OPTIONS[:port] = v }
191
- opts.on("-i", "--instances=number", Integer, "Number of instances (default: #{OPTIONS[:instances]})") { |v| OPTIONS[:instances] = v }
192
- opts.on("-r", "--repeat=seconds", Integer, "Repeat spawn attempts every n seconds (default: off)") { |v| OPTIONS[:repeat] = v }
193
- opts.on("-e", "--environment=name", String, "test|development|production (default: #{OPTIONS[:environment]})") { |v| OPTIONS[:environment] = v }
194
- opts.on("-P", "--prefix=path", String, "URL prefix for Rails app. [Used only with Mongrel > v0.3.15]: (default: #{OPTIONS[:prefix]})") { |v| OPTIONS[:prefix] = v }
195
- opts.on("-n", "--process=name", String, "default: #{OPTIONS[:process]}") { |v| OPTIONS[:process] = v }
196
- opts.on("-s", "--spawner=path", String, "default: #{OPTIONS[:spawner]}") { |v| OPTIONS[:spawner] = v }
197
- opts.on("-d", "--dispatcher=path", String, "default: #{OPTIONS[:dispatcher]}") { |dispatcher| OPTIONS[:dispatcher] = File.expand_path(dispatcher) }
198
-
199
- opts.separator ""
200
-
201
- opts.on("-h", "--help", "Show this help message.") { puts opts; exit }
202
-
203
- opts.parse!
204
- end
205
-
206
- ENV["RAILS_ENV"] = OPTIONS[:environment]
207
-
208
- if OPTIONS[:repeat]
209
- daemonize
210
- trap("TERM") { exit }
211
- spawner_class.record_pid
212
-
213
- loop do
214
- spawner_class.spawn_all
215
- sleep(OPTIONS[:repeat])
216
- end
217
- else
218
- spawner_class.spawn_all
219
- end