rails 2.2.2 → 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 +274 -189
  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 -93
  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 +1 -1
  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 +36 -170
  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
data/CHANGELOG CHANGED
@@ -1,10 +1,95 @@
1
- *2.2 (November 21st, 2008)*
1
+ *2.3.2 [Final] (March 15, 2009)*
2
2
 
3
- * Added config.i18n settings gatherer to config/environment, auto-loading of all locales in config/locales/*.rb,yml, and config/locales/en.yml as a sample locale [DHH]
3
+ * Allow metal to live in plugins #2045 [Matthew Rudy]
4
+
5
+ * Added metal [Josh Peek]
6
+
7
+ * Remove script/performance/request in favour of the performance integration tests. [Pratik Naik]
8
+
9
+ To continue using script/performance/request, install the request_profiler plugin :
10
+
11
+ script/plugin install git://github.com/rails/request_profiler.git
12
+
13
+ * Add a rake task to apply a template to an existing application : rake rails:template LOCATION=~/template.rb [Pratik Naik]
14
+
15
+ * Add "-m/--template" option to Rails generator to apply a template to the generated application. [Jeremy McAnally]
16
+
17
+ This has been extracted from rg - http://github.com/jeremymcanally/rg
18
+
19
+ Example:
20
+
21
+ # template.rb
22
+
23
+ # Install plugins from git or svn
24
+ plugin "will-paginate", :git => "git://github.com/mislav/will_paginate.git"
25
+ plugin "old-restful-auth", :svn => "http://svn.techno-weenie.net/projects/plugins/restful_authentication/"
26
+
27
+ # Add gems to environment.rb
28
+ gem "jeremymcanally-context"
29
+ gem "bluecloth"
30
+
31
+ # Vendor file. Data in a string or...
32
+ vendor("borrowed.rb", <<CODE
33
+ def helpful_method
34
+ do_something_helpful_here
35
+ end
36
+ CODE
37
+
38
+ # ...file data from block return value.
39
+ # #initializer creates a new initializer file
40
+ initializer("crypto.rb") do
41
+ salt = "--#{Time.now}--#{rand}--#{srand(Time.now.to_i)}"
42
+
43
+ "SPECIAL_SALT = '#{salt}'"
44
+ end
45
+
46
+ Usage:
47
+
48
+ To use a template, provide a file path or URL:
49
+
50
+ 1. Using a local file :
51
+
52
+ rails <application name> -m /path/to/my/template.rb
53
+
54
+ 2. Or directly from a URL :
55
+
56
+ rails <application name> --template=http://gist.github.com/31208.txt
57
+
58
+ * Extracted the process scripts (inspector, reaper, spawner) into the plugin irs_process_scripts [David Heinemeier Hansson]
59
+
60
+ * Changed Rails.root to return a Pathname object (allows for Rails.root.join('app', 'controllers') => "#{RAILS_ROOT}/app/controllers") #1482 [Damian Janowski/?]
61
+
62
+ * Added view path support for engines [David Heinemeier Hansson]
63
+
64
+ * Added that config/routes.rb files in engine plugins are automatically loaded (and reloaded when they change in dev mode) [David Heinemeier Hansson]
65
+
66
+ * Added app/[models|controllers|helpers] to the load path for plugins that has an app directory (go engines ;)) [David Heinemeier Hansson]
67
+
68
+ * Add config.preload_frameworks to load all frameworks at startup. Default to false so Rails autoloads itself as it's used. Turn this on for Passenger and JRuby. Also turned on by config.threadsafe! [Jeremy Kemper]
69
+
70
+ * Add a rake task to generate dispatchers : rake rails:generate_dispatchers [Pratik Naik]
71
+
72
+ * "rails <app>" will not generate public/dispatch.cgi/fcgi/rb files by default now. Please use "--with-dispatchers" option if you need them. [Yaroslav Markin, Pratik Naik]
73
+
74
+ * Added rake rails:update:application_controller to renamed application.rb to application_controller.rb -- included in rake rails:update so upgrading to 2.3 will automatically trigger it #1439 [kastner]
75
+
76
+ * Added Rails.backtrace_cleaner as an accessor for the Rails::BacktraceCleaner instance used by the framework to cut down on backtrace noise and config/initializers/backtrace_silencers.rb to add your own (or turn them all off) [David Heinemeier Hansson]
77
+
78
+ * Switch from Test::Unit::TestCase to ActiveSupport::TestCase. [Jeremy Kemper]
79
+
80
+ * Added config.i18n settings gatherer to config/environment, auto-loading of all locales in config/locales/*.rb,yml, and config/locales/en.yml as a sample locale [David Heinemeier Hansson]
81
+
82
+ * BACKWARDS INCOMPATIBLE: Renamed application.rb to application_controller.rb and removed all the special casing that was in place to support the former. You must do this rename in your own application when you upgrade to this version [David Heinemeier Hansson]
83
+
84
+
85
+ *2.2.1 [RC2] (November 14th, 2008)*
4
86
 
5
87
  * Fixed plugin generator so that generated unit tests would subclass ActiveSupport::TestCase, also introduced a helper script to reduce the needed require statements #1137 [Mathias Meyer]
6
88
 
7
- * Update Prototype to 1.6.0.4 [sam]
89
+ * Update Prototype to 1.6.0.3 [sam]
90
+
91
+
92
+ *2.2.0 [RC1] (October 24th, 2008)*
8
93
 
9
94
  * Fixed that sqlite would report "db/development.sqlite3 already exists" whether true or not on db:create #614 [Antonio Cangiano]
10
95
 
@@ -35,9 +120,9 @@
35
120
 
36
121
  * Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb) [Jacek Becela]
37
122
 
38
- * Changed all generated tests to use the test/do declaration style [DHH]
123
+ * Changed all generated tests to use the test/do declaration style [David Heinemeier Hansson]
39
124
 
40
- * Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [DHH]
125
+ * Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [David Heinemeier Hansson]
41
126
 
42
127
  * Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
43
128
 
@@ -52,13 +137,13 @@
52
137
 
53
138
  * Rails Edge info returns the latest git commit hash [Francesc Esplugas]
54
139
 
55
- * Added Rails.public_path to control where HTML and assets are expected to be loaded from (defaults to Rails.root + "/public") #11581 [nicksieger]
140
+ * Added Rails.public_path to control where HTML and assets are expected to be loaded from (defaults to Rails.root + "/public") #11581 [Nick Sieger]
56
141
 
57
142
  * rake time:zones:local finds correct base utc offset for zones in the Southern Hemisphere [Geoff Buesing]
58
143
 
59
- * Don't require rails/gem_builder during rails initialization, it's only needed for the gems:build task. [rick]
144
+ * Don't require rails/gem_builder during rails initialization, it's only needed for the gems:build task. [Rick Olson]
60
145
 
61
- * script/performance/profiler compatibility with the ruby-prof >= 0.5.0. Closes #9176. [Catfish]
146
+ * script/performance/profiler compatibility with the ruby-prof >= 0.5.0. Closes #9176. [Jonathan del Strother]
62
147
 
63
148
  * Flesh out rake gems:unpack to unpack all gems, and add rake gems:build for native extensions. #11513 [ddollar]
64
149
 
@@ -68,11 +153,11 @@
68
153
  rake gems:build # builds all unpacked gems
69
154
  rake gems:build GEM=mygem # builds only the gem 'mygem'
70
155
 
71
- * Add config.active_support for future configuration options. Also, add more new Rails 3 config settings to new_rails_defaults.rb [rick]
156
+ * Add config.active_support for future configuration options. Also, add more new Rails 3 config settings to new_rails_defaults.rb [Rick Olson]
72
157
 
73
- * Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_* constants [pratik]
158
+ * Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_* constants [Pratik Naik]
74
159
 
75
- * Allow files in plugins to be reloaded like the rest of the application. [rick]
160
+ * Allow files in plugins to be reloaded like the rest of the application. [Rick Olson]
76
161
 
77
162
  Enables or disables plugin reloading.
78
163
 
@@ -87,7 +172,7 @@
87
172
 
88
173
  Dependencies.load_once_paths << lib_path
89
174
 
90
- * Small tweak to allow plugins to specify gem dependencies. [rick]
175
+ * Small tweak to allow plugins to specify gem dependencies. [Rick Olson]
91
176
 
92
177
  # OLD open_id_authentication plugin init.rb
93
178
  require 'yadis'
@@ -102,7 +187,7 @@
102
187
  ActionController::Base.send :include, OpenIdAuthentication
103
188
  end
104
189
 
105
- * Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [rick]
190
+ * Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [Rick Olson]
106
191
 
107
192
  Rails::Initializer.run do |config|
108
193
  config.gem "bj"
@@ -119,23 +204,23 @@
119
204
  # Unpack specified gem to vendor/gems/gem_name-x.x.x
120
205
  rake gems:unpack GEM=bj
121
206
 
122
- * Removed the default .htaccess configuration as there are so many good deployment options now (kept it as an example in README) [DHH]
207
+ * Removed the default .htaccess configuration as there are so many good deployment options now (kept it as an example in README) [David Heinemeier Hansson]
123
208
 
124
209
  * config.time_zone accepts TZInfo::Timezone identifiers as well as Rails TimeZone identifiers [Geoff Buesing]
125
210
 
126
211
  * Rails::Initializer#initialize_time_zone raises an error if value assigned to config.time_zone is not recognized. Rake time zone tasks only require ActiveSupport instead of entire environment [Geoff Buesing]
127
212
 
128
- * Stop adding the antiquated test/mocks/* directories and only add them to the path if they're still there for legacy reasons [DHH]
213
+ * Stop adding the antiquated test/mocks/* directories and only add them to the path if they're still there for legacy reasons [David Heinemeier Hansson]
129
214
 
130
- * Added that gems can now be plugins if they include rails/init.rb #11444 [jbarnette]
215
+ * Added that gems can now be plugins if they include rails/init.rb #11444 [John Barnette]
131
216
 
132
- * Added Plugin#about method to programmatically access the about.yml in a plugin #10979 [lazyatom]
217
+ * Added Plugin#about method to programmatically access the about.yml in a plugin #10979 [James Adam]
133
218
 
134
219
  plugin = Rails::Plugin.new(path_to_my_plugin)
135
220
  plugin.about["author"] # => "James Adam"
136
221
  plugin.about["url"] # => "http://interblah.net"
137
222
 
138
- * Improve documentation. [Radar, Jan De Poorter, chuyeow, xaviershay, danger, miloops, Xavier Noria, Sunny Ripert]
223
+ * Improve documentation. [Ryan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria, Sunny Ripert]
139
224
 
140
225
  * Added config.time_zone = 'UTC' in the default environment.rb [Geoff Buesing]
141
226
 
@@ -143,7 +228,7 @@
143
228
 
144
229
  * Add config.time_zone for configuring the default Time.zone value. #10982 [Geoff Buesing]
145
230
 
146
- * Added support for installing plugins hosted at git repositories #11294 [danger]
231
+ * Added support for installing plugins hosted at git repositories #11294 [Jack Danger Canty]
147
232
 
148
233
  * Fixed that script/generate would not look for plugin generators in plugin_paths #11000 [glv]
149
234
 
@@ -151,7 +236,7 @@
151
236
 
152
237
  * Added a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)]
153
238
 
154
- * Reshuffle load order so that routes and observers are initialized after plugins and app initializers. Closes #10980 [rick]
239
+ * Reshuffle load order so that routes and observers are initialized after plugins and app initializers. Closes #10980 [Rick Olson]
155
240
 
156
241
  * Git support for script/generate. #10690 [ssoroka]
157
242
 
@@ -159,7 +244,7 @@
159
244
 
160
245
  * Resurrect WordNet synonym lookups. #10710 [tom./, matt]
161
246
 
162
- * Added config.cache_store to environment options to control the default cache store (default is FileStore if tmp/cache is present, otherwise MemoryStore is used) [DHH]
247
+ * Added config.cache_store to environment options to control the default cache store (default is FileStore if tmp/cache is present, otherwise MemoryStore is used) [David Heinemeier Hansson]
163
248
 
164
249
  * Added that rails:update is run when you do rails:freeze:edge to ensure you also get the latest JS and config files #10565 [jeff]
165
250
 
@@ -172,9 +257,9 @@
172
257
 
173
258
  *2.0.2* (December 16th, 2007)
174
259
 
175
- * Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [DHH]
260
+ * Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [David Heinemeier Hansson]
176
261
 
177
- * Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH]
262
+ * Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [David Heinemeier Hansson]
178
263
 
179
264
  * Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #10363 [revans]
180
265
 
@@ -198,19 +283,19 @@
198
283
 
199
284
  * The test task stops with a warning if you have pending migrations. #10377 [Josh Knowles]
200
285
 
201
- * Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [thijsv]
286
+ * Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [Thijs van der Vossen]
202
287
 
203
288
  * Update Prototype to 1.6.0.1. [sam]
204
289
 
205
290
  * Update script.aculo.us to 1.8.0.1. [madrobby]
206
291
 
207
- * Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [jbarnette]
292
+ * Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [John Barnette]
208
293
 
209
- * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette]
294
+ * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [John Barnette]
210
295
 
211
296
  * Update to Prototype -r8232. [sam]
212
297
 
213
- * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
298
+ * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai (Phusion)]
214
299
 
215
300
  * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow]
216
301
 
@@ -220,11 +305,11 @@
220
305
 
221
306
  * Only load ActionMailer::TestCase if ActionMailer is loaded. Closes #10137 [defunkt]
222
307
 
223
- * Fixed that db:reset would use migrations instead of loading db/schema.rb [DHH]
308
+ * Fixed that db:reset would use migrations instead of loading db/schema.rb [David Heinemeier Hansson]
224
309
 
225
310
  * Ensure the plugin loader only loads plugins once. Closes #10102 [haruki_zaemon]
226
311
 
227
- * Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [lazyatom]
312
+ * Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [James Adam]
228
313
 
229
314
  * Added --skip-timestamps to generators that produce models #10036 [Tim Pope]
230
315
 
@@ -238,7 +323,7 @@
238
323
 
239
324
  * config/boot.rb correctly detects RAILS_GEM_VERSION. #9834 [alexch, thewoolleyman]
240
325
 
241
- * Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [jeremymcanally]
326
+ * Fixed incorrect migration number if script/generate executed outside of Rails root #7080 [Jeremy McAnally]
242
327
 
243
328
  * Update Prototype to 1.6.0_rc1 and script.aculo.us to 1.8.0 preview 0. [sam, madrobby]
244
329
 
@@ -251,7 +336,7 @@
251
336
  * db:create works with remote databases whereas db:create:all only creates
252
337
  databases on localhost. #9753 [Trevor Wennblom]
253
338
 
254
- * Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [DHH]
339
+ * Removed calls to fixtures in generated tests as fixtures :all is now present by default in test_helper.rb [David Heinemeier Hansson]
255
340
 
256
341
  * Add --prefix option to script/server when using mongrel. [dacat]
257
342
 
@@ -260,13 +345,13 @@ databases on localhost. #9753 [Trevor Wennblom]
260
345
 
261
346
  * Fixed that installing plugins from SVN repositories that use trunk/ will work #8188 [evan]
262
347
 
263
- * Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick]
348
+ * Moved the SourceAnnotationExtractor to a separate file in case libraries try to load the rails rake tasks twice. [Rick Olson]
264
349
 
265
350
  * Moved Dispatcher to ActionController::Dispatcher. [Jeremy Kemper]
266
351
 
267
- * Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [DHH]. (You can change it back with config.logger = Logger.new("/path/to/log", level).)
352
+ * Changed the default logger from Ruby's own Logger with the clean_logger extensions to ActiveSupport::BufferedLogger for performance reasons [David Heinemeier Hansson]. (You can change it back with config.logger = Logger.new("/path/to/log", level).)
268
353
 
269
- * Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [DHH]
354
+ * Added a default 422.html page to be rendered when ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, or ActionController::InvalidAuthenticityToken is raised [David Heinemeier Hansson]
270
355
 
271
356
  * Added --skip-fixture option to script/generate model #6862 [sandofsky]
272
357
 
@@ -274,15 +359,15 @@ databases on localhost. #9753 [Trevor Wennblom]
274
359
 
275
360
  * Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]
276
361
 
277
- * Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob S]
362
+ * Added TEMPLATE option to rake doc:app to set a custom output template #7737 [Jakob Skjerning]
278
363
 
279
- * Added VERBOSE option to rake db:migrate to turn off output #8204 [jbarnette]
364
+ * Added VERBOSE option to rake db:migrate to turn off output #8204 [John Barnette]
280
365
 
281
366
  * Fixed that rake doc:app should use UTF-8 #8906 [farzy]
282
367
 
283
368
  * Fixes rake annotations to search erb and builder files as well #9150 [m.langenberg]
284
369
 
285
- * Removed web_service generator [Koz]
370
+ * Removed web_service generator [Michael Koziarski]
286
371
 
287
372
  * Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [Frederick Cheung]. Example:
288
373
 
@@ -291,11 +376,11 @@ databases on localhost. #9753 [Trevor Wennblom]
291
376
 
292
377
  * Added symbols as a legal way of specifying plugins in config.plugins #9629 [tom]
293
378
 
294
- * Removed deprecated task names, like clear_logs, in favor of the new namespaced style [DHH]
379
+ * Removed deprecated task names, like clear_logs, in favor of the new namespaced style [David Heinemeier Hansson]
295
380
 
296
- * Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate. #9582 [zdennis]
381
+ * Support multiple config.after_initialize blocks so plugins and apps can more easily cooperate. #9582 [Zach Dennis]
297
382
 
298
- * Added db:drop:all to drop all databases declared in config/database.yml [DHH]
383
+ * Added db:drop:all to drop all databases declared in config/database.yml [David Heinemeier Hansson]
299
384
 
300
385
  * Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [Pratik Naik]
301
386
 
@@ -307,11 +392,11 @@ databases on localhost. #9753 [Trevor Wennblom]
307
392
 
308
393
  ruby script/generation migration RemoveSomeStuffFromCustomers first_name:string last_name:string
309
394
 
310
- * Add ActiveResource to Rails::Info. Closes #8741 [kampers]
395
+ * Add ActiveResource to Rails::Info. Closes #8741 [Chris Kampmeier]
311
396
 
312
397
  * use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman]
313
398
 
314
- * Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent. Closes #9006 [zenspider]
399
+ * Automatically generate add/remove column commands in specially named migrations like AddLocationToEvent. Closes #9006 [Ryan Davis]
315
400
 
316
401
  * Default to plural table name in Rails Generator if ActiveRecord is not present. Closes #8963 [evan]
317
402
 
@@ -329,7 +414,7 @@ databases on localhost. #9753 [Trevor Wennblom]
329
414
 
330
415
  * Fix that FCGIs would leave log files open when asked to shut down by USR2. #3028 [Sebastian Kanthak, Josh Peek]
331
416
 
332
- * Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
417
+ * Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick Olson]
333
418
 
334
419
  * Fix syntax error in dispatcher than wrecked failsafe responses. #8625 [mtitorenko]
335
420
 
@@ -357,11 +442,11 @@ databases on localhost. #9753 [Trevor Wennblom]
357
442
 
358
443
  * Generators use *.html.erb view template naming. #8278 [Tim Pope]
359
444
 
360
- * Updated resource_scaffold and model generators to use short-hand style migrations [DHH]
445
+ * Updated resource_scaffold and model generators to use short-hand style migrations [David Heinemeier Hansson]
361
446
 
362
447
  * Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warning for config.breakpoint_server. [Nicholas Seckar]
363
448
 
364
- * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [DHH]
449
+ * Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug by Kent Sibilev since the breakpointer has been broken since Ruby 1.8.4 and will not be coming back [David Heinemeier Hansson]
365
450
 
366
451
  To use the new debugger, start your server with script/server --debugger and insert a call to 'debugger'
367
452
  (instead of 'breakpoint') where you want to jump into the debugger.
@@ -379,13 +464,13 @@ databases on localhost. #9753 [Trevor Wennblom]
379
464
 
380
465
  * Include Active Resource in rails:freeze:edge rake task. [Thomas Fuchs]
381
466
 
382
- * Include Active Resource instead of Action Web Service [DHH] You can add AWS back with this in config/environment.rb:
467
+ * Include Active Resource instead of Action Web Service [David Heinemeier Hansson] You can add AWS back with this in config/environment.rb:
383
468
 
384
469
  config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/actionwebservice/lib )
385
470
 
386
471
  ...or just gem 'actionwebservice'
387
472
 
388
- * Give generate scaffold a more descriptive database message. Closes #7316 [jeremymcanally]
473
+ * Give generate scaffold a more descriptive database message. Closes #7316 [Jeremy McAnally]
389
474
 
390
475
  * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
391
476
 
@@ -399,19 +484,19 @@ databases on localhost. #9753 [Trevor Wennblom]
399
484
 
400
485
  * Split plugin location and loading out of the initializer and into a new Plugin namespace, which includes Plugin::Locater and Plugin::Loader. The loader class that is used can be customized using the config.plugin_loader option. Those monkey patching the plugin loading subsystem take note, the internals changing here will likely break your modifications. The good news is that it should be substantially easier to hook into the plugin locating and loading process now. [Marcel Molina Jr.]
401
486
 
402
- * Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [DHH]
487
+ * Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [David Heinemeier Hansson]
403
488
 
404
489
  * Added source-annotations extractor tasks to rake [Jamis Buck]. This allows you to add FIXME, OPTIMIZE, and TODO comments to your source code that can then be extracted in concert with rake notes (shows all), rake notes:fixme, rake notes:optimize and rake notes:todo.
405
490
 
406
- * Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [DHH]
491
+ * Added fixtures :all to test_helper.rb to assume that most people just want all their fixtures loaded all the time [David Heinemeier Hansson]
407
492
 
408
- * Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [DHH]
493
+ * Added config/initializers where all ruby files within it are automatically loaded after the Rails configuration is done, so you don't have to litter the environment.rb file with a ton of mixed stuff [David Heinemeier Hansson]
409
494
 
410
495
  * For new apps, generate a random secret for the cookie-based session store. [Jeremy Kemper]
411
496
 
412
- * Stop swallowing errors during rake test [Koz]
497
+ * Stop swallowing errors during rake test [Michael Koziarski]
413
498
 
414
- * Update Rails Initializer to use ActionController::Base#view_paths [Rick]
499
+ * Update Rails Initializer to use ActionController::Base#view_paths [Rick Olson]
415
500
 
416
501
  * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
417
502
 
@@ -429,12 +514,12 @@ databases on localhost. #9753 [Trevor Wennblom]
429
514
 
430
515
  * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
431
516
 
432
- * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
517
+ * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick Olson]
433
518
  If you really want your plugins to reload, add this to the very top of init.rb:
434
519
 
435
520
  Dependencies.load_once_paths.delete(lib_path)
436
521
 
437
- * Allow config.to_prepare to work, make the dispatcher safe to 're require'. [Koz, Nicholas Seckar]
522
+ * Allow config.to_prepare to work, make the dispatcher safe to 're require'. [Michael Koziarski, Nicholas Seckar]
438
523
 
439
524
  * Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish]
440
525
 
@@ -444,25 +529,25 @@ databases on localhost. #9753 [Trevor Wennblom]
444
529
 
445
530
  * Don't generate a components directory in new Rails apps. [Jeremy Kemper]
446
531
 
447
- * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
532
+ * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [David Heinemeier Hansson]
448
533
 
449
- * Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [DHH]
534
+ * Added one-letter aliases for the three default environments to script/console, so script/console p will load the production environment (t for test, d for development) [David Heinemeier Hansson]
450
535
 
451
- * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
536
+ * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [David Heinemeier Hansson]
452
537
 
453
538
  * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
454
539
 
455
- * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
540
+ * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [David Heinemeier Hansson]
456
541
 
457
- * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
542
+ * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [David Heinemeier Hansson]
458
543
 
459
544
  * Update to Prototype and script.aculo.us [5579]. [Thomas Fuchs]
460
545
 
461
- * Made script/server work with -e and -d when using Mongrel [DHH]
546
+ * Made script/server work with -e and -d when using Mongrel [David Heinemeier Hansson]
462
547
 
463
548
  * Update to Prototype 1.5.0_rc2 [5550] which makes it work in Opera again [Thomas Fuchs]
464
549
 
465
- * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
550
+ * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Lütke]
466
551
 
467
552
  * Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
468
553
 
@@ -486,31 +571,31 @@ databases on localhost. #9753 [Trevor Wennblom]
486
571
 
487
572
  * resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
488
573
 
489
- * Revert environment changes for autoload_paths. [Koz]
574
+ * Revert environment changes for autoload_paths. [Michael Koziarski]
490
575
 
491
576
  * Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
492
577
 
493
- * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]
578
+ * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Michael Koziarski]
494
579
 
495
- * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
580
+ * Added option to script/process/spawner of specifying the binding address #5133 [Dee Zsombor]
496
581
 
497
582
  * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
498
583
 
499
- * Update scaffold to use new form_tag block functionality. Closes #6480. [BobSilva]
584
+ * Update scaffold to use new form_tag block functionality. Closes #6480. [Bob Silva]
500
585
 
501
586
  * Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
502
587
 
503
588
  * Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
504
589
 
505
- * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
590
+ * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Michael Koziarski]
506
591
 
507
- * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
592
+ * Added config.plugins to control which plugins are loaded #6269 [Stefan Kaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
508
593
 
509
594
  config.plugins = %w[ routing_navigator simply_helpful ]
510
595
 
511
596
  * Clean up html on included error pages. [Tim Lucas]
512
597
 
513
- * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
598
+ * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [David Heinemeier Hansson]
514
599
 
515
600
  * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
516
601
 
@@ -518,17 +603,17 @@ databases on localhost. #9753 [Trevor Wennblom]
518
603
 
519
604
  * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
520
605
 
521
- * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
606
+ * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [Bob Silva]
522
607
 
523
608
  * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
524
609
 
525
- * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
610
+ * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [David Heinemeier Hansson]
526
611
 
527
- * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
612
+ * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [David Heinemeier Hansson]. Examples:
528
613
 
529
614
  ./script/generate model post title:string created_on:date body:text published:boolean
530
615
 
531
- * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
616
+ * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [David Heinemeier Hansson]
532
617
 
533
618
  * script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
534
619
  #!/usr/bin/env /path/to/my/app/script/runner
@@ -537,7 +622,7 @@ databases on localhost. #9753 [Trevor Wennblom]
537
622
 
538
623
  * Look for rake tasks in plugin subdirs. #6259 [obrie]
539
624
 
540
- * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
625
+ * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [David Heinemeier Hansson]
541
626
 
542
627
  * Updated prototype.js to 1.5.0_rc1 with latest fixes. [Rick Olson]
543
628
 
@@ -549,7 +634,7 @@ databases on localhost. #9753 [Trevor Wennblom]
549
634
 
550
635
  * script/server creates the tmp/pids directory. #6204 [jonathan]
551
636
 
552
- * Fix script/console --sandbox for internal transactions changes. #5738 [chris@octopod.info, charles.gerungan@gmail.com]
637
+ * Fix script/console --sandbox for internal transactions changes. #5738 [Chris McGrath, charles.gerungan@gmail.com]
553
638
 
554
639
  * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
555
640
  documented in initializer.rb, the workaround is:
@@ -562,7 +647,7 @@ References #6031. [Nicholas Seckar]
562
647
 
563
648
  * Update to Prototype 1.5.0_rc1 [sam]
564
649
 
565
- * Formally Deprecate the old rake tasks. [Koz]
650
+ * Formally Deprecate the old rake tasks. [Michael Koziarski]
566
651
 
567
652
  * Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
568
653
 
@@ -595,7 +680,7 @@ References #6031. [Nicholas Seckar]
595
680
 
596
681
  * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
597
682
 
598
- * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
683
+ * Clarify usage of script/plugin source. Closes #5344. [James Adam]
599
684
 
600
685
  * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
601
686
 
@@ -603,7 +688,7 @@ References #6031. [Nicholas Seckar]
603
688
 
604
689
  * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
605
690
 
606
- * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [shugo@ruby-lang.org]
691
+ * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [Shugo Maeda]
607
692
 
608
693
  * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
609
694
 
@@ -617,7 +702,7 @@ References #6031. [Nicholas Seckar]
617
702
 
618
703
  * Ensure the logger is initialized. #5629 [mike@clarkware.com]
619
704
 
620
- * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
705
+ * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [David Heinemeier Hansson]. Examples:
621
706
 
622
707
  spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
623
708
  spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
@@ -660,15 +745,15 @@ References #6031. [Nicholas Seckar]
660
745
 
661
746
  * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
662
747
 
663
- * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
748
+ * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [Nick Sieger]
664
749
 
665
750
  * Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
666
751
 
667
- * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
752
+ * Fix script/plugin so it doesn't barf on invalid URLs [Rick Olson]
668
753
 
669
754
  * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
670
755
 
671
- * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
756
+ * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick Olson]
672
757
 
673
758
  * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
674
759
 
@@ -678,11 +763,11 @@ References #6031. [Nicholas Seckar]
678
763
 
679
764
  * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
680
765
 
681
- * Added lib/ to the directories that will get application docs generated [DHH]
766
+ * Added lib/ to the directories that will get application docs generated [David Heinemeier Hansson]
682
767
 
683
- * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
768
+ * Add observer generator. Closes #5167. [François Beausoleil]
684
769
 
685
- * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
770
+ * Session migration generator obeys pluralize_table_names. #5145 [James Adam]
686
771
 
687
772
  * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
688
773
 
@@ -690,17 +775,17 @@ References #6031. [Nicholas Seckar]
690
775
 
691
776
  * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
692
777
 
693
- * Distinguish the spawners for different processes [DHH]
778
+ * Distinguish the spawners for different processes [David Heinemeier Hansson]
694
779
 
695
- * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
780
+ * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [David Heinemeier Hansson]
696
781
 
697
782
  * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
698
783
 
699
784
  * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
700
785
 
701
- * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
786
+ * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [David Heinemeier Hansson]
702
787
 
703
- * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
788
+ * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [David Heinemeier Hansson]
704
789
 
705
790
 
706
791
  *1.2.3* (March 12th, 2007)
@@ -709,14 +794,14 @@ References #6031. [Nicholas Seckar]
709
794
 
710
795
  * Windows: include MinGW in RUBY_PLATFORM check. #2982 [okkez000@gmail.com, Kaspar Schiess]
711
796
 
712
- * Stop swallowing errors during rake test [Koz]
797
+ * Stop swallowing errors during rake test [Michael Koziarski]
713
798
 
714
799
 
715
800
  *1.2.2* (February 5th, 2007)
716
801
 
717
802
  * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler]
718
803
 
719
- * Require the dispatcher for Rails::Configuration#to_prepare. [Rick]
804
+ * Require the dispatcher for Rails::Configuration#to_prepare. [Rick Olson]
720
805
 
721
806
 
722
807
  *1.2.1* (January 16th, 2007)
@@ -732,7 +817,7 @@ References #6031. [Nicholas Seckar]
732
817
 
733
818
  * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
734
819
 
735
- * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
820
+ * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick Olson]
736
821
  If you really want your plugins to reload, add this to the very top of init.rb:
737
822
 
738
823
  Dependencies.load_once_paths.delete(lib_path)
@@ -745,23 +830,23 @@ References #6031. [Nicholas Seckar]
745
830
 
746
831
  * Don't generate a components directory in new Rails apps. [Jeremy Kemper]
747
832
 
748
- * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [DHH]
833
+ * Fixed script/process/spawner to work properly with Mongrel including in -r (daemonize mode) [David Heinemeier Hansson]
749
834
 
750
- * Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [DHH]
835
+ * Deprecated the name route "root" as it'll be used as a shortcut for map.connect '' in Rails 2.0 [David Heinemeier Hansson]
751
836
 
752
- * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
837
+ * Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [David Heinemeier Hansson]
753
838
 
754
839
  * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
755
840
 
756
- * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
841
+ * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [David Heinemeier Hansson]
757
842
 
758
- * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
843
+ * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [David Heinemeier Hansson]
759
844
 
760
845
  * Update to Prototype and script.aculo.us [5579]. [Sam Stephenson, Thomas Fuchs]
761
846
 
762
- * Made script/server work with -e and -d when using Mongrel [DHH]
847
+ * Made script/server work with -e and -d when using Mongrel [David Heinemeier Hansson]
763
848
 
764
- * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Luetke]
849
+ * Make sure that exceptions which are thrown outside of the user code try their best to be handeled in ApplicationController#rescue_action [Tobias Lütke]
765
850
 
766
851
  * Rails::VERSION::STRING should always be available without having to require 'rails/version'. #6244 [fearoffish]
767
852
 
@@ -781,29 +866,29 @@ References #6031. [Nicholas Seckar]
781
866
 
782
867
  * resource and scaffold_resource generators add a restful route to config/routes.rb [Jeremy Kemper]
783
868
 
784
- * Revert environment changes for autoload_paths. [Koz]
869
+ * Revert environment changes for autoload_paths. [Michael Koziarski]
785
870
 
786
- * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]
871
+ * Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Michael Koziarski]
787
872
 
788
- * Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
873
+ * Added option to script/process/spawner of specifying the binding address #5133 [Dee Zsombor]
789
874
 
790
875
  * Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
791
876
 
792
- * Update scaffold to use new form_tag block functionality. Closes #6480. [BobSilva]
877
+ * Update scaffold to use new form_tag block functionality. Closes #6480. [Bob Silva]
793
878
 
794
879
  * Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]
795
880
 
796
881
  * Mailer generator: handle mailers in modules, set mime_version in unit test. [Jeremy Kemper]
797
882
 
798
- * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Koz]
883
+ * Set $KCODE to 'u' by default to enable the multibyte safe String#chars proxy. [Michael Koziarski]
799
884
 
800
- * Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
885
+ * Added config.plugins to control which plugins are loaded #6269 [Stefan Kaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example:
801
886
 
802
887
  config.plugins = %w[ routing_navigator simply_helpful ]
803
888
 
804
889
  * Clean up html on included error pages. [Tim Lucas]
805
890
 
806
- * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH]
891
+ * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [David Heinemeier Hansson]
807
892
 
808
893
  * Update to latest Prototype and script.aculo.us trunk versions [Thomas Fuchs]
809
894
 
@@ -811,17 +896,17 @@ References #6031. [Nicholas Seckar]
811
896
 
812
897
  * Fixed test:uncommitted on Windows (backslash issue) #4999 [paul@paulbutcher.com]
813
898
 
814
- * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [BobSilva]
899
+ * Fixed migration creation to work with namespaced models, so script/generate model Gallery::Image will use create_table :gallery_images #6327 [Bob Silva]
815
900
 
816
901
  * Fixed rename_table on SQLite tables with indexes defined #5942 [brandon@opensoul.org]
817
902
 
818
- * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [DHH]
903
+ * Added default timeout setting of 5 seconds to SQLite3 database.yml configurations [David Heinemeier Hansson]
819
904
 
820
- * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [DHH]. Examples:
905
+ * Added generated attribute options to script/generate model, like the one found in scaffold_resource and resource [David Heinemeier Hansson]. Examples:
821
906
 
822
907
  ./script/generate model post title:string created_on:date body:text published:boolean
823
908
 
824
- * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [DHH]
909
+ * Added script/generate resource which works just like scaffold_resource, but creates empty placeholders instead of predefined [David Heinemeier Hansson]
825
910
 
826
911
  * script/runner can run files, pass on arguments, and be used as a shebang. #6286 [Tuxie, dlpond]
827
912
  #!/usr/bin/env /path/to/my/app/script/runner
@@ -830,13 +915,13 @@ References #6031. [Nicholas Seckar]
830
915
 
831
916
  * Look for rake tasks in plugin subdirs. #6259 [obrie]
832
917
 
833
- * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [DHH]
918
+ * Added map.connect ':controller/:action/:id.:format' as a default route to config/routes.rb [David Heinemeier Hansson]
834
919
 
835
920
  * session_migration generator adds an index on updated_at. #6207 [grg]
836
921
 
837
922
  * script/server creates the tmp/pids directory. #6204 [jonathan]
838
923
 
839
- * Fix script/console --sandbox for internal transactions changes. #5738 [chris@octopod.info, charles.gerungan@gmail.com]
924
+ * Fix script/console --sandbox for internal transactions changes. #5738 [Chris McGrath, charles.gerungan@gmail.com]
840
925
 
841
926
  * Remove the uncanny default of adding all app/models/*/ directories to the load path. This change will break application which expect the current behavior. As
842
927
  documented in initializer.rb, the workaround is:
@@ -847,7 +932,7 @@ References #6031. [Nicholas Seckar]
847
932
 
848
933
  * Update to script.aculo.us 1.6.3 [Thomas Fuchs]
849
934
 
850
- * Formally Deprecate the old rake tasks. [Koz]
935
+ * Formally Deprecate the old rake tasks. [Michael Koziarski]
851
936
 
852
937
  * Thoroughly test the FCGI dispatcher. #5970 [Kevin Clark]
853
938
 
@@ -878,7 +963,7 @@ References #6031. [Nicholas Seckar]
878
963
 
879
964
  * Fix Dispatcher.reset_application! so that AR subclasses are removed and Observers re-initialized *after* Reloadable classes are removed. Closes #5743. [Rick Olson]
880
965
 
881
- * Clarify usage of script/plugin source. Closes #5344. [james.adam@gmail.com]
966
+ * Clarify usage of script/plugin source. Closes #5344. [James Adam]
882
967
 
883
968
  * Add Dispatcher.to_prepare and config.to_prepare to provide a pre-request hook. [Nicholas Seckar]
884
969
 
@@ -886,7 +971,7 @@ References #6031. [Nicholas Seckar]
886
971
 
887
972
  * Added that you can change the web server port in config/lighttpd.conf from script/server --port/-p #5465 [mats@imediatec.co.uk]
888
973
 
889
- * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [shugo@ruby-lang.org]
974
+ * script/performance/profiler compatibility with the new ruby-prof, including an option to choose the results printer. #5679 [Shugo Maeda]
890
975
 
891
976
  * Fixed the failsafe response so it uses either the current recognized controller or ApplicationController. [Rick Olson]
892
977
 
@@ -900,7 +985,7 @@ References #6031. [Nicholas Seckar]
900
985
 
901
986
  * Ensure the logger is initialized. #5629 [mike@clarkware.com]
902
987
 
903
- * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
988
+ * Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [David Heinemeier Hansson]. Examples:
904
989
 
905
990
  spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
906
991
  spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
@@ -943,15 +1028,15 @@ References #6031. [Nicholas Seckar]
943
1028
 
944
1029
  * Mongrel: script/server works on Win32. #5499 [jeremydurham@gmail.com]
945
1030
 
946
- * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [nicksieger@gmail.com]
1031
+ * Remove opts.on { |options[:option_name] } style hash assignment. Closes #4440. [Nick Sieger]
947
1032
 
948
1033
  * Mongrel support for script/server. #5475 [jeremydurham@gmail.com]
949
1034
 
950
- * Fix script/plugin so it doesn't barf on invalid URLs [Rick]
1035
+ * Fix script/plugin so it doesn't barf on invalid URLs [Rick Olson]
951
1036
 
952
1037
  * Fix plugin install bug at dir with space. (closes #5359) [Yoshimasa NIWA]
953
1038
 
954
- * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick]
1039
+ * Fix bug with 'script/plugin install' so it reports unknown plugin names correctly. [Rick Olson]
955
1040
 
956
1041
  * Added uninstall.rb hook to plugin handling, such that plugins have a way of removing assets and other artifacts on removal #5003 [takiuchi@drecom.co.jp]
957
1042
 
@@ -961,11 +1046,11 @@ References #6031. [Nicholas Seckar]
961
1046
 
962
1047
  * Make "script/plugin install" work with svn+ssh URLs. [Sam Stephenson]
963
1048
 
964
- * Added lib/ to the directories that will get application docs generated [DHH]
1049
+ * Added lib/ to the directories that will get application docs generated [David Heinemeier Hansson]
965
1050
 
966
- * Add observer generator. Closes #5167. [francois.beausoleil@gmail.com]
1051
+ * Add observer generator. Closes #5167. [François Beausoleil]
967
1052
 
968
- * Session migration generator obeys pluralize_table_names. #5145 [james.adam@gmail.com]
1053
+ * Session migration generator obeys pluralize_table_names. #5145 [James Adam]
969
1054
 
970
1055
  * rake test:recent understands subdirectories. #2925 [jerrett@bravenet.com]
971
1056
 
@@ -973,17 +1058,17 @@ References #6031. [Nicholas Seckar]
973
1058
 
974
1059
  * The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk]
975
1060
 
976
- * Distinguish the spawners for different processes [DHH]
1061
+ * Distinguish the spawners for different processes [David Heinemeier Hansson]
977
1062
 
978
- * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [DHH]
1063
+ * Added -n/--process to script/process/spawner name the process pid (default is dispatch) [David Heinemeier Hansson]
979
1064
 
980
1065
  * Namespaced OrderedHash so the Rails implementation does not clash with any others. (fixes #4911) [Julian Tarkhanov]
981
1066
 
982
1067
  * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
983
1068
 
984
- * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [DHH]
1069
+ * Added script/process/inspector to do simple process status information on Rails dispatchers keeping pid files in tmp/pids [David Heinemeier Hansson]
985
1070
 
986
- * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [DHH]
1071
+ * Added pid file usage to script/process/spawner and script/process/reaper along with a directive in default config/lighttpd.conf file to record the pid. They will all save their pid file in tmp/pids [David Heinemeier Hansson]
987
1072
 
988
1073
 
989
1074
  *1.1.6* (August 10th, 2006)
@@ -1018,9 +1103,9 @@ References #6031. [Nicholas Seckar]
1018
1103
 
1019
1104
  * Change the scaffolding layout to use yield rather than @content_for_layout. [Marcel Molina Jr.]
1020
1105
 
1021
- * Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [DHH]
1106
+ * Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [David Heinemeier Hansson]
1022
1107
 
1023
- * Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [DHH]
1108
+ * Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [David Heinemeier Hansson]
1024
1109
 
1025
1110
 
1026
1111
  *1.1.1* (April 6th, 2006)
@@ -1031,7 +1116,7 @@ References #6031. [Nicholas Seckar]
1031
1116
 
1032
1117
  * Fixed that the -r/--ruby path option of the rails command was not being respected #4549 [ryan.raaum@gmail.com]
1033
1118
 
1034
- * Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [DHH]
1119
+ * Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [David Heinemeier Hansson]
1035
1120
 
1036
1121
  * Fixed that rake clone_structure_to_test should quit on pgsql if the dump is unsuccesful #4585 [augustz@augustz.com]
1037
1122
 
@@ -1039,9 +1124,9 @@ References #6031. [Nicholas Seckar]
1039
1124
 
1040
1125
  * Install alias so Rails::InfoController is accessible at /rails_info. Closes #4546. [Nicholas Seckar]
1041
1126
 
1042
- * Fixed that spawner should daemonize if running in repeat mode [DHH]
1127
+ * Fixed that spawner should daemonize if running in repeat mode [David Heinemeier Hansson]
1043
1128
 
1044
- * Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [DHH]
1129
+ * Added TAG option for rake rails:freeze:edge, so you can say rake rails:freeze:edge TAG=rel_1-1-0 to lock to the 1.1.0 release [David Heinemeier Hansson]
1045
1130
 
1046
1131
  * Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs]
1047
1132
 
@@ -1051,13 +1136,13 @@ References #6031. [Nicholas Seckar]
1051
1136
 
1052
1137
  * Fixed rake rails:freeze:gems #4518 [benji@silverinsanity.com]
1053
1138
 
1054
- * Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [DHH]
1139
+ * Added -f/--freeze option to rails command for freezing the application to the Rails version it was generated with [David Heinemeier Hansson]
1055
1140
 
1056
1141
  * Added gem binding of apps generated through the rails command to the gems of they were generated with [Nicholas Seckar]
1057
1142
 
1058
- * Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [DHH]
1143
+ * Added expiration settings for JavaScript, CSS, HTML, and images to default lighttpd.conf [David Heinemeier Hansson]
1059
1144
 
1060
- * Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [DHH]
1145
+ * Added gzip compression for JavaScript, CSS, and HTML to default lighttpd.conf [David Heinemeier Hansson]
1061
1146
 
1062
1147
  * Avoid passing escapeHTML non-string in Rails' info controller [Nicholas Seckar]
1063
1148
 
@@ -1116,19 +1201,19 @@ References #6031. [Nicholas Seckar]
1116
1201
 
1117
1202
  * Added tracking of database and framework versions in script/about #4088 [charles.gerungan@gmail.com/Rick Olson]
1118
1203
 
1119
- * Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [DHH]
1204
+ * Added public/javascripts/application.js as a sample since it'll automatically be included in javascript_include_tag :defaults [David Heinemeier Hansson]
1120
1205
 
1121
- * Added socket cleanup for lighttpd, both before and after [DHH]
1206
+ * Added socket cleanup for lighttpd, both before and after [David Heinemeier Hansson]
1122
1207
 
1123
- * Added automatic creation of tmp/ when running script/server [DHH]
1208
+ * Added automatic creation of tmp/ when running script/server [David Heinemeier Hansson]
1124
1209
 
1125
- * Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [DHH]
1210
+ * Added silence_stream that'll work on both STDERR or STDOUT or any other stream and deprecated silence_stderr in the process [David Heinemeier Hansson]
1126
1211
 
1127
1212
  * Added reload! method to script/console to reload all models and others that include Reloadable without quitting the console #4056 [esad@esse.at]
1128
1213
 
1129
- * Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [DHH]
1214
+ * Added that rake rails:freeze:edge will now just export all the contents of the frameworks instead of just lib, so stuff like rails:update:scripts, rails:update:javascripts, and script/server on lighttpd still just works #4047 [David Heinemeier Hansson]
1130
1215
 
1131
- * Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [thijs@fngtps.com]
1216
+ * Added fix for upload problems with lighttpd from Safari/IE to config/lighttpd.conf #3999 [Thijs van der Vossen]
1132
1217
 
1133
1218
  * Added test:uncommitted to test changes since last checkin to Subversion #4035 [technomancy@gmail.com]
1134
1219
 
@@ -1142,9 +1227,9 @@ References #6031. [Nicholas Seckar]
1142
1227
 
1143
1228
  * Add integration test support to app generation and testing [Jamis Buck]
1144
1229
 
1145
- * Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [DHH]
1230
+ * Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [David Heinemeier Hansson]
1146
1231
 
1147
- * CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [DHH]
1232
+ * CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [David Heinemeier Hansson]
1148
1233
 
1149
1234
  * Added -r/--repeat option to script/process/spawner that offers the same loop protection as the spinner did. This deprecates the script/process/spinner, so it's no longer included in the default Rails skeleton, but still available for backwards compatibility #3461 [ror@andreas-s.net]
1150
1235
 
@@ -1155,17 +1240,17 @@ References #6031. [Nicholas Seckar]
1155
1240
 
1156
1241
  * Added more information to script/plugin's doings to ease debugging #3755 [Rick Olson]
1157
1242
 
1158
- * Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [DHH]
1243
+ * Changed the default configuration for lighttpd to use tmp/sockets instead of log/ for the FastCGI sockets [David Heinemeier Hansson]
1159
1244
 
1160
- * Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [DHH]
1245
+ * Added a default configuration of the FileStore for fragment caching if tmp/cache is available, which makes action/fragment caching ready to use out of the box with no additional configuration [David Heinemeier Hansson]
1161
1246
 
1162
- * Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [DHH]
1247
+ * Changed the default session configuration to place sessions in tmp/sessions, if that directory is available, instead of /tmp (this essentially means a goodbye to 9/10 White Screen of Death errors and should have web hosting firms around the world cheering) [David Heinemeier Hansson]
1163
1248
 
1164
- * Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [DHH]
1249
+ * Added tmp/sessions, tmp/cache, and tmp/sockets as default directories in the Rails skeleton [David Heinemeier Hansson]
1165
1250
 
1166
- * Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [DHH]
1251
+ * Added that script/generate model will now automatically create a migration file for the model created. This can be turned off by calling the generator with --skip-migration [David Heinemeier Hansson]
1167
1252
 
1168
- * Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [DHH]
1253
+ * Added -d/--database option to the rails command, so you can do "rails --database=sqlite2 myapp" to start a new application preconfigured to use SQLite2 as the database. Removed the configuration examples from SQLite and PostgreSQL from the default MySQL configuration [David Heinemeier Hansson]
1169
1254
 
1170
1255
  * Allow script/server -c /path/to/lighttpd.conf [Jeremy Kemper]
1171
1256
 
@@ -1173,13 +1258,13 @@ References #6031. [Nicholas Seckar]
1173
1258
 
1174
1259
  * Update script.aculo.us to V1.5.3 [Thomas Fuchs]
1175
1260
 
1176
- * Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [DHH]
1261
+ * Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [David Heinemeier Hansson]
1177
1262
 
1178
- * Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [DHH]
1263
+ * Changed default lighttpd.conf to use CWD from lighttpd 1.4.10 that allows the same configuration to be used for both detach and not. Also ensured that auto-repeaping of FCGIs only happens when lighttpd is not detached. [David Heinemeier Hansson]
1179
1264
 
1180
1265
  * Added Configuration#after_initialize for registering a block which gets called after the framework is fully initialized. Useful for things like per-environment configuration of plugins. [Michael Koziarski]
1181
1266
 
1182
- * Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [DHH]
1267
+ * Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [David Heinemeier Hansson]
1183
1268
 
1184
1269
  * Fixed that static requests could unlock the mutex guarding dynamic requests in the WEBrick servlet #3433 [tom@craz8.com]
1185
1270
 
@@ -1197,7 +1282,7 @@ References #6031. [Nicholas Seckar]
1197
1282
 
1198
1283
  * Fix typo in mailer generator USAGE. #3458 [chriztian.steinmeier@gmail.com]
1199
1284
 
1200
- * Ignore version mismatch between pg_dump and the database server. #3457 [simon.stapleton@gmail.com]
1285
+ * Ignore version mismatch between pg_dump and the database server. #3457 [Simon Stapleton]
1201
1286
 
1202
1287
  * Reap FCGI processes after lighttpd exits. [Sam Stephenson]
1203
1288
 
@@ -1229,11 +1314,11 @@ References #6031. [Nicholas Seckar]
1229
1314
 
1230
1315
  * Have the lighttpd server script report the actual ip to which the server is bound. #2903. [Adam]
1231
1316
 
1232
- * Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [james.adam@gmail.com]
1317
+ * Add plugin library directories to the load path after the lib directory so that libraries in the lib directory get precedence. #2910. [James Adam]
1233
1318
 
1234
1319
  * Make help for the console command more explicit about how to specify the desired environment in which to run the console. #2911. [anonymous]
1235
1320
 
1236
- * PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database. #2964 [dreamer3@gmail.com]
1321
+ * PostgreSQL: the purge_test_database Rake task shouldn't explicitly specify the template0 template when creating a fresh test database. #2964 [Dreamer3]
1237
1322
 
1238
1323
  * Introducing the session_migration generator. Creates an add_session_table migration. Allows generator to specify migrations directory. #2958, #2960 [Rick Olson]
1239
1324
 
@@ -1251,19 +1336,19 @@ References #6031. [Nicholas Seckar]
1251
1336
 
1252
1337
  * Make sure that legacy db tasks also reference :database for SQLite #2830 [kazuhiko@fdiary.net]
1253
1338
 
1254
- * Pass __FILE__ when evaluating plugins' init.rb. #2817 [james.adam@gmail.com]
1339
+ * Pass __FILE__ when evaluating plugins' init.rb. #2817 [James Adam]
1255
1340
 
1256
1341
  * Better svn status matching for generators. #2814 [François Beausoleil <francois.beausoleil@gmail.com>, Blair Zajac <blair@orcaware.com>]
1257
1342
 
1258
- * Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [DHH]
1343
+ * Don't reload routes until plugins have been loaded so they have a chance to extend the routing capabilities [David Heinemeier Hansson]
1259
1344
 
1260
1345
  * Don't detach or fork for script/server tailing [Nicholas Seckar]
1261
1346
 
1262
- * Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path for compatibility with web servers that don't have Ruby in path [DHH]
1347
+ * Changed all script/* to use #!/usr/bin/env ruby instead of hard-coded Ruby path. public/dispatcher.* still uses the hard-coded path for compatibility with web servers that don't have Ruby in path [David Heinemeier Hansson]
1263
1348
 
1264
- * Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [DHH] #2660
1349
+ * Force RAILS_ENV to be "test" when running tests, so that ENV["RAILS_ENV"] = "production" in config/environment.rb doesn't wreck havok [David Heinemeier Hansson] #2660
1265
1350
 
1266
- * Correct versioning in :freeze_gems Rake task. #2778 [jakob@mentalized.net, Jeremy Kemper]
1351
+ * Correct versioning in :freeze_gems Rake task. #2778 [Jakob Skjerning, Jeremy Kemper]
1267
1352
 
1268
1353
  * Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson]
1269
1354
 
@@ -1278,7 +1363,7 @@ References #6031. [Nicholas Seckar]
1278
1363
 
1279
1364
  * Use require_library_or_gem 'fcgi' in script/server [Sam Stephenson]
1280
1365
 
1281
- * Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [DHH]
1366
+ * Added default lighttpd config in config/lighttpd.conf and added a default runner for lighttpd in script/server (works like script/server, but using lighttpd and FastCGI). It will use lighttpd if available, otherwise WEBrick. You can force either or using 'script/server lighttpd' or 'script/server webrick' [David Heinemeier Hansson]
1282
1367
 
1283
1368
  * New configuration option config.plugin_paths which may be a single path like the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins']. [Jeremy Kemper]
1284
1369
 
@@ -1304,7 +1389,7 @@ References #6031. [Nicholas Seckar]
1304
1389
 
1305
1390
  * Make fcgi handler respond to TERM signals with an explicit exit [Jamis Buck]
1306
1391
 
1307
- * Added demonstration of fixture use to the test case generated by the model generator [DHH]
1392
+ * Added demonstration of fixture use to the test case generated by the model generator [David Heinemeier Hansson]
1308
1393
 
1309
1394
  * If specified, pass PostgreSQL client character encoding to createdb. #2703 [Kazuhiko <kazuhiko@fdiary.net>]
1310
1395
 
@@ -1324,7 +1409,7 @@ References #6031. [Nicholas Seckar]
1324
1409
 
1325
1410
  * The PostgreSQL :db_structure_dump Rake task limits its dump to the schema search path in database.yml. [Anatol Pomozov <anatol.pomozov@gmail.com>]
1326
1411
 
1327
- * Add task to generate rdoc for all installed plugins. [Marcel Molina]
1412
+ * Add task to generate rdoc for all installed plugins. [Marcel Molina Jr.]
1328
1413
 
1329
1414
  * Update script.aculo.us to V1.5_rc4 [Thomas Fuchs]
1330
1415
 
@@ -1332,15 +1417,15 @@ References #6031. [Nicholas Seckar]
1332
1417
 
1333
1418
  * Migrations may be destroyed: script/destroy migration foo. #2635 [Charles M. Gerungan <charles.gerungan@gmail.com>, Jamis Buck, Jeremy Kemper]
1334
1419
 
1335
- * Added that plugins can carry generators and that generator stub files can be created along with new plugins using script/generate plugin <name> --with-generator [DHH]
1420
+ * Added that plugins can carry generators and that generator stub files can be created along with new plugins using script/generate plugin <name> --with-generator [David Heinemeier Hansson]
1336
1421
 
1337
- * Removed app/apis as a default empty dir since its automatically created when using script/generate web_service [DHH]
1422
+ * Removed app/apis as a default empty dir since its automatically created when using script/generate web_service [David Heinemeier Hansson]
1338
1423
 
1339
1424
  * Added script/plugin to manage plugins (install, remove, list, etc) [Ryan Tomayko]
1340
1425
 
1341
- * Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [DHH]
1426
+ * Added test_plugins task: Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name) [David Heinemeier Hansson]
1342
1427
 
1343
- * Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [DHH]
1428
+ * Added plugin generator to create a stub structure for a new plugin in vendor/plugins (see "script/generate plugin" for help) [David Heinemeier Hansson]
1344
1429
 
1345
1430
  * Fixed scaffold generator when started with only 1 parameter #2609 [self@mattmower.com]
1346
1431
 
@@ -1371,7 +1456,7 @@ References #6031. [Nicholas Seckar]
1371
1456
 
1372
1457
  *0.14.0 (RC1)* (October 16th, 2005)
1373
1458
 
1374
- * Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke]
1459
+ * Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Lütke]
1375
1460
 
1376
1461
  * Fix rake dev and related commands [Nicholas Seckar]
1377
1462
 
@@ -1382,7 +1467,7 @@ References #6031. [Nicholas Seckar]
1382
1467
 
1383
1468
  * Added Rails framework freezing tasks: freeze_gems (freeze to current gems), freeze_edge (freeze to Rails SVN trunk), unfreeze_rails (float with newest gems on system)
1384
1469
 
1385
- * Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias Luetke]
1470
+ * Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias Lütke]
1386
1471
 
1387
1472
  * Added cleaning of RAILS_ROOT to useless elements such as '../non-dot-dot/'. Provides cleaner backtraces and error messages. [Nicholas Seckar]
1388
1473
 
@@ -1408,7 +1493,7 @@ References #6031. [Nicholas Seckar]
1408
1493
 
1409
1494
  * Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler]
1410
1495
 
1411
- * Added prevention of duplicate migrations from the generator #2240 [fbeausoleil@ftml.net]
1496
+ * Added prevention of duplicate migrations from the generator #2240 [François Beausoleil]
1412
1497
 
1413
1498
  * Add db_schema_dump and db_schema_import rake tasks to work with the new ActiveRecord::SchemaDumper (for dumping a schema to and reading a schema from a ruby file).
1414
1499
 
@@ -1424,7 +1509,7 @@ References #6031. [Nicholas Seckar]
1424
1509
 
1425
1510
  * Added -m/--mime-types option to the WEBrick server, so you can specify a Apache-style mime.types file to load #2059 [ask@develooper.com]
1426
1511
 
1427
- * Added -c/--svn option to the generator that'll add new files and remove destroyed files using svn add/revert/remove as appropriate #2064 [kevin.clark@gmail.com]
1512
+ * Added -c/--svn option to the generator that'll add new files and remove destroyed files using svn add/revert/remove as appropriate #2064 [Kevin Clark]
1428
1513
 
1429
1514
  * Added -c/--charset option to WEBrick server, so you can specify a default charset (which without changes is UTF-8) #2084 [wejn@box.cz]
1430
1515
 
@@ -1456,9 +1541,9 @@ References #6031. [Nicholas Seckar]
1456
1541
 
1457
1542
  * 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.
1458
1543
 
1459
- * Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina]
1544
+ * Added load_fixtures task to the Rakefile, which will load all the fixtures into the database for the current environment #1791 [Marcel Molina Jr.]
1460
1545
 
1461
- * Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [michael@schubert]
1546
+ * Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [Michael Schubert]
1462
1547
 
1463
1548
  * Dropped the 'immediate close-down' of FCGI processes since it didn't work consistently and produced bad responses when it didn't. So now a TERM ensures exit after the next request (just as if the process is handling a request when it receives the signal). This means that you'll have to 'nudge' all FCGI processes with a request in order to ensure that they have all reloaded. This can be done by something like ./script/process/repear --nudge 'http://www.myapp.com' --instances 10, which will load the myapp site 10 times (and thus hit all of the 10 FCGI processes once, enough to shut down).
1464
1549
 
@@ -1469,13 +1554,13 @@ References #6031. [Nicholas Seckar]
1469
1554
 
1470
1555
  * Fixed that each request with the WEBrick adapter would open a new database connection #1685 [Sam Stephenson]
1471
1556
 
1472
- * Added support for SQL Server in the database rake tasks #1652 [ken.barker@gmail.com] Note: osql and scptxfr may need to be installed on your development environment. This involves getting the .exes and a .rll (scptxfr) from a production SQL Server (not developer level SQL Server). Add their location to your Environment PATH and you are all set.
1557
+ * Added support for SQL Server in the database rake tasks #1652 [Ken Barker] Note: osql and scptxfr may need to be installed on your development environment. This involves getting the .exes and a .rll (scptxfr) from a production SQL Server (not developer level SQL Server). Add their location to your Environment PATH and you are all set.
1473
1558
 
1474
1559
  * Added a VERSION parameter to the migrate task that allows you to do "rake migrate VERSION=34" to migrate to the 34th version traveling up or down depending on the current version
1475
1560
 
1476
- * Extend Ruby version check to include RUBY_RELEASE_DATE >= '2005-12-25', the final Ruby 1.8.2 release #1674 [court3nay@gmail.com]
1561
+ * Extend Ruby version check to include RUBY_RELEASE_DATE >= '2005-12-25', the final Ruby 1.8.2 release #1674 [court3nay]
1477
1562
 
1478
- * Improved documentation for environment config files #1625 [court3nay@gmail.com]
1563
+ * Improved documentation for environment config files #1625 [court3nay]
1479
1564
 
1480
1565
 
1481
1566
  *0.13.0* (6 July, 2005)
@@ -1486,19 +1571,19 @@ References #6031. [Nicholas Seckar]
1486
1571
 
1487
1572
  * Added "migrate" as rake task to execute all the pending migrations from db/migrate
1488
1573
 
1489
- * Fixed that model generator would make fixtures plural, even if ActiveRecord::Base.pluralize_table_names was false #1185 [Marcel Molina]
1574
+ * Fixed that model generator would make fixtures plural, even if ActiveRecord::Base.pluralize_table_names was false #1185 [Marcel Molina Jr.]
1490
1575
 
1491
1576
  * Added a DOCTYPE of HTML transitional to the HTML files generated by Rails #1124 [Michael Koziarski]
1492
1577
 
1493
1578
  * SIGTERM also gracefully exits dispatch.fcgi. Ignore SIGUSR1 on Windows.
1494
1579
 
1495
- * Add the option to manually manage garbage collection in the FastCGI dispatcher. Set the number of requests between GC runs in your public/dispatch.fcgi [skaes@web.de]
1580
+ * Add the option to manually manage garbage collection in the FastCGI dispatcher. Set the number of requests between GC runs in your public/dispatch.fcgi [Stefan Kaes]
1496
1581
 
1497
1582
  * Allow dynamic application reloading for dispatch.fcgi processes by sending a SIGHUP. If the process is currently handling a request, the request will be allowed to complete first. This allows production fcgi's to be reloaded without having to restart them.
1498
1583
 
1499
1584
  * RailsFCGIHandler (dispatch.fcgi) no longer tries to explicitly flush $stdout (CgiProcess#out always calls flush)
1500
1585
 
1501
- * Fixed rakefile actions against PostgreSQL when the password is all numeric #1462 [michael@schubert.cx]
1586
+ * Fixed rakefile actions against PostgreSQL when the password is all numeric #1462 [Michael Schubert]
1502
1587
 
1503
1588
  * ActionMailer::Base subclasses are reloaded with the other rails components #1262
1504
1589
 
@@ -1512,7 +1597,7 @@ References #6031. [Nicholas Seckar]
1512
1597
 
1513
1598
  * Fixed Webrick to escape + characters in URL's the same way that lighttpd and apache do #1397 [Nicholas Seckar]
1514
1599
 
1515
- * Added -e/--environment option to script/runner #1408 [fbeausoleil@ftml.net]
1600
+ * Added -e/--environment option to script/runner #1408 [François Beausoleil]
1516
1601
 
1517
1602
  * Modernize the scaffold generator to use the simplified render and test methods and to change style from @params["id"] to params[:id]. #1367
1518
1603
 
@@ -1553,7 +1638,7 @@ References #6031. [Nicholas Seckar]
1553
1638
 
1554
1639
  * Added lazy typing for generate, such that ./script/generate cn == ./script/generate controller and the likes #1051 [k@v2studio.com]
1555
1640
 
1556
- * Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson@gmail.com]
1641
+ * Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson]
1557
1642
 
1558
1643
  * Upgraded to Active Record 1.10.0, Action Pack 1.8.0, Action Mailer 0.9.0, Action Web Service 0.7.0, Active Support 1.0.4
1559
1644
 
@@ -1573,11 +1658,11 @@ References #6031. [Nicholas Seckar]
1573
1658
 
1574
1659
  * Added additional error handling to the FastCGI dispatcher to catch even errors taking down the entire process
1575
1660
 
1576
- * Improved the generated scaffold code a lot to take advantage of recent Rails developments #882 [Tobias Luetke]
1661
+ * Improved the generated scaffold code a lot to take advantage of recent Rails developments #882 [Tobias Lütke]
1577
1662
 
1578
1663
  * Combined the script/environment.rb used for gems and regular files version. If vendor/rails/* has all the frameworks, then files version is used, otherwise gems #878 [Nicholas Seckar]
1579
1664
 
1580
- * Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke]
1665
+ * Changed .htaccess to allow dispatch.* to be called from a sub-directory as part of the push with Action Pack to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Lütke]
1581
1666
 
1582
1667
  * Added script/runner which can be used to run code inside the environment by eval'ing the first parameter. Examples:
1583
1668
 
@@ -1601,9 +1686,9 @@ References #6031. [Nicholas Seckar]
1601
1686
 
1602
1687
  *0.10.1* (7th March, 2005)
1603
1688
 
1604
- * Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak]
1689
+ * Fixed rake stats to ignore editor backup files like model.rb~ #791 [Sebastian Kanthak]
1605
1690
 
1606
- * Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias Luetke]
1691
+ * Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias Lütke]
1607
1692
 
1608
1693
  * Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence)
1609
1694
 
@@ -1636,7 +1721,7 @@ References #6031. [Nicholas Seckar]
1636
1721
 
1637
1722
  *0.10.0* (24th February, 2005)
1638
1723
 
1639
- * Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel]
1724
+ * Changed default IP binding for WEBrick from 127.0.0.1 to 0.0.0.0 so that the server is accessible both locally and remotely #696 [Marcel Molina Jr.]
1640
1725
 
1641
1726
  * Fixed that script/server -d was broken so daemon mode couldn't be used #687 [Nicholas Seckar]
1642
1727
 
@@ -1703,7 +1788,7 @@ References #6031. [Nicholas Seckar]
1703
1788
 
1704
1789
  *0.9.4.1* (January 18th, 2005)
1705
1790
 
1706
- * Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina]
1791
+ * Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina Jr.]
1707
1792
 
1708
1793
  * Fixed binding of caller #496 [Alexey]
1709
1794
 
@@ -1712,22 +1797,22 @@ References #6031. [Nicholas Seckar]
1712
1797
 
1713
1798
  *0.9.4* (January 17th, 2005)
1714
1799
 
1715
- * Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Luetke]
1800
+ * Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Lütke]
1716
1801
 
1717
1802
  * Flipped code-to-test ratio around to be more readable #468 [Scott Baron]
1718
1803
 
1719
1804
  * Fixed log file permissions to be 666 instead of 777 (so they're not executable) #471 [Lucas Carlson]
1720
1805
 
1721
- * Fixed that auto reloading would some times not work or would reload the models twice #475 [Tobias Luetke]
1806
+ * Fixed that auto reloading would some times not work or would reload the models twice #475 [Tobias Lütke]
1722
1807
 
1723
1808
  * Added rewrite rules to deal with caching to public/.htaccess
1724
1809
 
1725
1810
  * Added the option to specify a controller name to "generate scaffold" and made the default controller name the plural form of the model.
1726
1811
 
1727
1812
  * Added that rake clone_structure_to_test, db_structure_dump, and purge_test_database tasks now pick up the source database to use from
1728
- RAILS_ENV instead of just forcing development #424 [Tobias Luetke]
1813
+ RAILS_ENV instead of just forcing development #424 [Tobias Lütke]
1729
1814
 
1730
- * Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [octopod]
1815
+ * Fixed script/console to work with Windows (that requires the use of irb.bat) #418 [Chris McGrath]
1731
1816
 
1732
1817
  * Fixed WEBrick servlet slowdown over time by restricting the load path reloading to mod_ruby
1733
1818