rails 2.3.2 → 2.3.3

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 (118) hide show
  1. data/CHANGELOG +4 -0
  2. data/Rakefile +11 -9
  3. data/configs/routes.rb +1 -1
  4. data/guides/files/javascripts/code_highlighter.js +188 -0
  5. data/guides/files/javascripts/guides.js +8 -0
  6. data/guides/files/javascripts/highlighters.js +90 -0
  7. data/guides/files/stylesheets/main.css +441 -0
  8. data/guides/files/stylesheets/print.css +52 -0
  9. data/guides/files/stylesheets/reset.css +43 -0
  10. data/guides/files/stylesheets/style.css +13 -0
  11. data/guides/files/stylesheets/syntax.css +31 -0
  12. data/guides/images/belongs_to.png +0 -0
  13. data/guides/images/book_icon.gif +0 -0
  14. data/guides/images/bullet.gif +0 -0
  15. data/guides/images/chapters_icon.gif +0 -0
  16. data/guides/images/check_bullet.gif +0 -0
  17. data/guides/images/credits_pic_blank.gif +0 -0
  18. data/guides/images/csrf.png +0 -0
  19. data/guides/images/customized_error_messages.png +0 -0
  20. data/guides/images/error_messages.png +0 -0
  21. data/guides/images/feature_tile.gif +0 -0
  22. data/guides/images/footer_tile.gif +0 -0
  23. data/guides/images/fxn.jpg +0 -0
  24. data/guides/images/grey_bullet.gif +0 -0
  25. data/guides/images/habtm.png +0 -0
  26. data/guides/images/has_many.png +0 -0
  27. data/guides/images/has_many_through.png +0 -0
  28. data/guides/images/has_one.png +0 -0
  29. data/guides/images/has_one_through.png +0 -0
  30. data/guides/images/header_backdrop.png +0 -0
  31. data/guides/images/header_tile.gif +0 -0
  32. data/guides/images/i18n/demo_localized_pirate.png +0 -0
  33. data/guides/images/i18n/demo_translated_en.png +0 -0
  34. data/guides/images/i18n/demo_translated_pirate.png +0 -0
  35. data/guides/images/i18n/demo_translation_missing.png +0 -0
  36. data/guides/images/i18n/demo_untranslated.png +0 -0
  37. data/guides/images/icons/README +5 -0
  38. data/guides/images/icons/callouts/1.png +0 -0
  39. data/guides/images/icons/callouts/10.png +0 -0
  40. data/guides/images/icons/callouts/11.png +0 -0
  41. data/guides/images/icons/callouts/12.png +0 -0
  42. data/guides/images/icons/callouts/13.png +0 -0
  43. data/guides/images/icons/callouts/14.png +0 -0
  44. data/guides/images/icons/callouts/15.png +0 -0
  45. data/guides/images/icons/callouts/2.png +0 -0
  46. data/guides/images/icons/callouts/3.png +0 -0
  47. data/guides/images/icons/callouts/4.png +0 -0
  48. data/guides/images/icons/callouts/5.png +0 -0
  49. data/guides/images/icons/callouts/6.png +0 -0
  50. data/guides/images/icons/callouts/7.png +0 -0
  51. data/guides/images/icons/callouts/8.png +0 -0
  52. data/guides/images/icons/callouts/9.png +0 -0
  53. data/guides/images/icons/caution.png +0 -0
  54. data/guides/images/icons/example.png +0 -0
  55. data/guides/images/icons/home.png +0 -0
  56. data/guides/images/icons/important.png +0 -0
  57. data/guides/images/icons/next.png +0 -0
  58. data/guides/images/icons/note.png +0 -0
  59. data/guides/images/icons/prev.png +0 -0
  60. data/guides/images/icons/tip.png +0 -0
  61. data/guides/images/icons/up.png +0 -0
  62. data/guides/images/icons/warning.png +0 -0
  63. data/guides/images/nav_arrow.gif +0 -0
  64. data/guides/images/polymorphic.png +0 -0
  65. data/guides/images/posts_index.png +0 -0
  66. data/guides/images/rails_guides_logo.gif +0 -0
  67. data/guides/images/rails_logo_remix.gif +0 -0
  68. data/guides/images/rails_welcome.png +0 -0
  69. data/guides/images/session_fixation.png +0 -0
  70. data/guides/images/tab_grey.gif +0 -0
  71. data/guides/images/tab_info.gif +0 -0
  72. data/guides/images/tab_note.gif +0 -0
  73. data/guides/images/tab_red.gif +0 -0
  74. data/guides/images/tab_yellow.gif +0 -0
  75. data/guides/images/tab_yellow.png +0 -0
  76. data/guides/images/validation_error_messages.png +0 -0
  77. data/guides/rails_guides.rb +42 -0
  78. data/guides/rails_guides/generator.rb +138 -0
  79. data/guides/rails_guides/helpers.rb +34 -0
  80. data/guides/rails_guides/indexer.rb +55 -0
  81. data/guides/rails_guides/textile_extensions.rb +41 -0
  82. data/guides/source/2_2_release_notes.textile +422 -0
  83. data/guides/source/2_3_release_notes.textile +610 -0
  84. data/guides/source/action_controller_overview.textile +776 -0
  85. data/guides/source/action_mailer_basics.textile +424 -0
  86. data/guides/source/active_record_basics.textile +135 -0
  87. data/guides/source/active_record_querying.textile +969 -0
  88. data/guides/source/activerecord_validations_callbacks.textile +1086 -0
  89. data/guides/source/association_basics.textile +1781 -0
  90. data/guides/source/caching_with_rails.textile +524 -0
  91. data/guides/source/command_line.textile +589 -0
  92. data/guides/source/configuring.textile +234 -0
  93. data/guides/source/contribute.textile +71 -0
  94. data/guides/source/contributing_to_rails.textile +239 -0
  95. data/guides/source/credits.erb.textile +52 -0
  96. data/guides/source/debugging_rails_applications.textile +709 -0
  97. data/guides/source/form_helpers.textile +766 -0
  98. data/guides/source/getting_started.textile +1297 -0
  99. data/guides/source/i18n.textile +912 -0
  100. data/guides/source/index.erb.textile +124 -0
  101. data/guides/source/layout.html.erb +103 -0
  102. data/guides/source/layouts_and_rendering.textile +979 -0
  103. data/guides/source/migrations.textile +591 -0
  104. data/guides/source/nested_model_forms.textile +222 -0
  105. data/guides/source/performance_testing.textile +531 -0
  106. data/guides/source/plugins.textile +1512 -0
  107. data/guides/source/rails_on_rack.textile +309 -0
  108. data/guides/source/routing.textile +903 -0
  109. data/guides/source/security.textile +986 -0
  110. data/guides/source/testing.textile +951 -0
  111. data/lib/commands/performance/profiler.rb +1 -1
  112. data/lib/initializer.rb +27 -4
  113. data/lib/rails/gem_dependency.rb +35 -6
  114. data/lib/rails/rack/metal.rb +1 -1
  115. data/lib/rails/version.rb +1 -1
  116. data/lib/tasks/gems.rake +19 -6
  117. data/lib/test_help.rb +4 -1
  118. metadata +123 -7
@@ -0,0 +1,610 @@
1
+ h2. Ruby on Rails 2.3 Release Notes
2
+
3
+ Rails 2.3 delivers a variety of new and improved features, including pervasive Rack integration, refreshed support for Rails Engines, nested transactions for Active Record, dynamic and default scopes, unified rendering, more efficient routing, application templates, and quiet backtraces. This list covers the major upgrades, but doesn't include every little bug fix and change. If you want to see everything, check out the "list of commits":http://github.com/rails/rails/commits/master in the main Rails repository on GitHub or review the +CHANGELOG+ files for the individual Rails components.
4
+
5
+ endprologue.
6
+
7
+ h3. Application Architecture
8
+
9
+ There are two major changes in the architecture of Rails applications: complete integration of the "Rack":http://rack.rubyforge.org/ modular web server interface, and renewed support for Rails Engines.
10
+
11
+ h4. Rack Integration
12
+
13
+ Rails has now broken with its CGI past, and uses Rack everywhere. This required and resulted in a tremendous number of internal changes (but if you use CGI, don't worry; Rails now supports CGI through a proxy interface.) Still, this is a major change to Rails internals. After upgrading to 2.3, you should test on your local environment and your production environment. Some things to test:
14
+
15
+ * Sessions
16
+ * Cookies
17
+ * File uploads
18
+ * JSON/XML APIs
19
+
20
+ Here's a summary of the rack-related changes:
21
+
22
+ * +script/server+ has been switched to use Rack, which means it supports any Rack compatible server. +script/server+ will also pick up a rackup configuration file if one exists. By default, it will look for a +config.ru+ file, but you can override this with the +-c+ switch.
23
+ * The FCGI handler goes through Rack.
24
+ * +ActionController::Dispatcher+ maintains its own default middleware stack. Middlewares can be injected in, reordered, and removed. The stack is compiled into a chain on boot. You can configure the middleware stack in +environment.rb+.
25
+ * The +rake middleware+ task has been added to inspect the middleware stack. This is useful for debugging the order of the middleware stack.
26
+ * The integration test runner has been modified to execute the entire middleware and application stack. This makes integration tests perfect for testing Rack middleware.
27
+ * +ActionController::CGIHandler+ is a backwards compatible CGI wrapper around Rack. The +CGIHandler+ is meant to take an old CGI object and convert its environment information into a Rack compatible form.
28
+ * +CgiRequest+ and +CgiResponse+ have been removed.
29
+ * Session stores are now lazy loaded. If you never access the session object during a request, it will never attempt to load the session data (parse the cookie, load the data from memcache, or lookup an Active Record object).
30
+ * You no longer need to use +CGI::Cookie.new+ in your tests for setting a cookie value. Assigning a +String+ value to request.cookies["foo"] now sets the cookie as expected.
31
+ * +CGI::Session::CookieStore+ has been replaced by +ActionController::Session::CookieStore+.
32
+ * +CGI::Session::MemCacheStore+ has been replaced by +ActionController::Session::MemCacheStore+.
33
+ * +CGI::Session::ActiveRecordStore+ has been replaced by +ActiveRecord::SessionStore+.
34
+ * You can still change your session store with +ActionController::Base.session_store = :active_record_store+.
35
+ * Default sessions options are still set with +ActionController::Base.session = { :key => "..." }+.
36
+ * The mutex that normally wraps your entire request has been moved into middleware, +ActionController::Lock+.
37
+ * +ActionController::AbstractRequest+ and +ActionController::Request+ have been unified. The new +ActionController::Request+ inherits from +Rack::Request+. This affects access to +response.headers['type']+ in test requests. Use +response.content_type+ instead.
38
+ * +ActiveRecord::QueryCache+ middleware is automatically inserted onto the middleware stack if +ActiveRecord+ has been loaded. This middleware sets up and flushes the per-request Active Record query cache.
39
+ * The Rails router and controller classes follow the Rack spec. You can call a controller directly with +SomeController.call(env)+. The router stores the routing parameters in +rack.routing_args+.
40
+ * +ActionController::Request+ inherits from +Rack::Request+.
41
+ * Instead of +config.action_controller.session = { :session_key => 'foo', ...+ use +config.action_controller.session = { :key => 'foo', ...+.
42
+ * Using the +ParamsParser+ middleware preprocesses any XML, JSON, or YAML requests so they can be read normally with any +Rack::Request+ object after it.
43
+
44
+ h4. Renewed Support for Rails Engines
45
+
46
+ After some versions without an upgrade, Rails 2.3 offers some new features for Rails Engines (Rails applications that can be embedded within other applications). First, routing files in engines are automatically loaded and reloaded now, just like your +routes.rb+ file (this also applies to routing files in other plugins). Second, if your plugin has an app folder, then app/[models|controllers|helpers] will automatically be added to the Rails load path. Engines also support adding view paths now, and Action Mailer as well as Action View will use views from engines and other plugins.
47
+
48
+ h3. Documentation
49
+
50
+ The "Ruby on Rails guides":http://guides.rubyonrails.org/ project has published several additional guides for Rails 2.3. In addition, a "separate site":http://guides.rails.info/ maintains updated copies of the Guides for Edge Rails. Other documentation efforts include a relaunch of the "Rails wiki":http://newwiki.rubyonrails.org/ and early planning for a Rails Book.
51
+
52
+ * More Information: "Rails Documentation Projects":http://weblog.rubyonrails.org/2009/1/15/rails-documentation-projects.
53
+
54
+ h3. Ruby 1.9.1 Support
55
+
56
+ Rails 2.3 should pass all of its own tests whether you are running on Ruby 1.8 or the now-released Ruby 1.9.1. You should be aware, though, that moving to 1.9.1 entails checking all of the data adapters, plugins, and other code that you depend on for Ruby 1.9.1 compatibility, as well as Rails core.
57
+
58
+ h3. Active Record
59
+
60
+ Active Record gets quite a number of new features and bug fixes in Rails 2.3. The highlights include nested attributes, nested transactions, dynamic and default scopes, and batch processing.
61
+
62
+ h4. Nested Attributes
63
+
64
+ Active Record can now update the attributes on nested models directly, provided you tell it to do so:
65
+
66
+ <ruby>
67
+ class Book < ActiveRecord::Base
68
+ has_one :author
69
+ has_many :pages
70
+
71
+ accepts_nested_attributes_for :author, :pages
72
+ end
73
+ </ruby>
74
+
75
+ Turning on nested attributes enables a number of things: automatic (and atomic) saving of a record together with its associated children, child-aware validations, and support for nested forms (discussed later).
76
+
77
+ You can also specify requirements for any new records that are added via nested attributes using the +:reject_if+ option:
78
+
79
+ <ruby>
80
+ accepts_nested_attributes_for :author,
81
+ :reject_if => proc { |attributes| attributes['name'].blank? }
82
+ </ruby>
83
+
84
+ * Lead Contributor: "Eloy Duran":http://www.superalloy.nl/blog/
85
+ * More Information: "Nested Model Forms":http://weblog.rubyonrails.org/2009/1/26/nested-model-forms
86
+
87
+ h4. Nested Transactions
88
+
89
+ Active Record now supports nested transactions, a much-requested feature. Now you can write code like this:
90
+
91
+ <ruby>
92
+ User.transaction do
93
+ User.create(:username => 'Admin')
94
+ User.transaction(:requires_new => true) do
95
+ User.create(:username => 'Regular')
96
+ raise ActiveRecord::Rollback
97
+ end
98
+ end
99
+
100
+ User.find(:all) # => Returns only Admin
101
+ </ruby>
102
+
103
+ Nested transactions let you roll back an inner transaction without affecting the state of the outer transaction. If you want a transaction to be nested, you must explicitly add the +:requires_new+ option; otherwise, a nested transaction simply becomes part of the parent transaction (as it does currently on Rails 2.2). Under the covers, nested transactions are "using savepoints":http://rails.lighthouseapp.com/projects/8994/tickets/383, so they're supported even on databases that don't have true nested transactions. There is also a bit of magic going on to make these transactions play well with transactional fixtures during testing.
104
+
105
+ * Lead Contributors: "Jonathan Viney":http://www.workingwithrails.com/person/4985-jonathan-viney and "Hongli Lai":http://izumi.plan99.net/blog/
106
+
107
+ h4. Dynamic Scopes
108
+
109
+ You know about dynamic finders in Rails (which allow you to concoct methods like +find_by_color_and_flavor+ on the fly) and named scopes (which allow you to encapsulate reusable query conditions into friendly names like +currently_active+). Well, now you can have dynamic scope methods. The idea is to put together syntax that allows filtering on the fly _and_ method chaining. For example:
110
+
111
+ <ruby>
112
+ Order.scoped_by_customer_id(12)
113
+ Order.scoped_by_customer_id(12).find(:all,
114
+ :conditions => "status = 'open'")
115
+ Order.scoped_by_customer_id(12).scoped_by_status("open")
116
+ </ruby>
117
+
118
+ There's nothing to define to use dynamic scopes: they just work.
119
+
120
+ * Lead Contributor: "Yaroslav Markin":http://evilmartians.com/
121
+ * More Information: "What's New in Edge Rails: Dynamic Scope Methods":http://ryandaigle.com/articles/2008/12/29/what-s-new-in-edge-rails-dynamic-scope-methods.
122
+
123
+ h4. Default Scopes
124
+
125
+ Rails 2.3 will introduce the notion of _default scopes_ similar to named scopes, but applying to all named scopes or find methods within the model. For example, you can write +default_scope :order => 'name ASC'+ and any time you retrieve records from that model they'll come out sorted by name (unless you override the option, of course).
126
+
127
+ * Lead Contributor: Paweł Kondzior
128
+ * More Information: "What's New in Edge Rails: Default Scoping":http://ryandaigle.com/articles/2008/11/18/what-s-new-in-edge-rails-default-scoping
129
+
130
+ h4. Batch Processing
131
+
132
+ You can now process large numbers of records from an ActiveRecord model with less pressure on memory by using +find_in_batches+:
133
+
134
+ <ruby>
135
+ Customer.find_in_batches(:conditions => {:active => true}) do |customer_group|
136
+ customer_group.each { |customer| customer.update_account_balance! }
137
+ end
138
+ </ruby>
139
+
140
+ You can pass most of the +find+ options into +find_in_batches+. However, you cannot specify the order that records will be returned in (they will always be returned in ascending order of primary key, which must be an integer), or use the +:limit+ option. Instead, use the +:batch_size+ option, which defaults to 1000, to set the number of records that will be returned in each batch.
141
+
142
+ The new +find_each+ method provides a wrapper around +find_in_batches+ that returns individual records, with the find itself being done in batches (of 1000 by default):
143
+
144
+ <ruby>
145
+ Customer.find_each do |customer|
146
+ customer.update_account_balance!
147
+ end
148
+ </ruby>
149
+
150
+ Note that you should only use this method for batch processing: for small numbers of records (less than 1000), you should just use the regular find methods with your own loop.
151
+
152
+ * More Information (at that point the convenience method was called just +each+):
153
+ ** "Rails 2.3: Batch Finding":http://afreshcup.com/2009/02/23/rails-23-batch-finding/
154
+ ** "What's New in Edge Rails: Batched Find":http://ryandaigle.com/articles/2009/2/23/what-s-new-in-edge-rails-batched-find
155
+
156
+ h4. Multiple Conditions for Callbacks
157
+
158
+ When using Active Record callbacks, you can now combine +:if+ and +:unless+ options on the same callback, and supply multiple conditions as an array:
159
+
160
+ <ruby>
161
+ before_save :update_credit_rating, :if => :active,
162
+ :unless => [:admin, :cash_only]
163
+ </ruby>
164
+ * Lead Contributor: L. Caviola
165
+
166
+ h4. Find with having
167
+
168
+ Rails now has a +:having+ option on find (as well as on +has_many+ and +has_and_belongs_to_many+ associations) for filtering records in grouped finds. As those with heavy SQL backgrounds know, this allows filtering based on grouped results:
169
+
170
+ <ruby>
171
+ developers = Developer.find(:all, :group => "salary",
172
+ :having => "sum(salary) > 10000", :select => "salary")
173
+ </ruby>
174
+
175
+ * Lead Contributor: "Emilio Tagua":http://github.com/miloops
176
+
177
+ h4. Reconnecting MySQL Connections
178
+
179
+ MySQL supports a reconnect flag in its connections - if set to true, then the client will try reconnecting to the server before giving up in case of a lost connection. You can now set +reconnect = true+ for your MySQL connections in +database.yml+ to get this behavior from a Rails application. The default is +false+, so the behavior of existing applications doesn't change.
180
+
181
+ * Lead Contributor: "Dov Murik":http://twitter.com/dubek
182
+ * More information:
183
+ ** "Controlling Automatic Reconnection Behavior":http://dev.mysql.com/doc/refman/5.0/en/auto-reconnect.html
184
+ ** "MySQL auto-reconnect revisited":http://groups.google.com/group/rubyonrails-core/browse_thread/thread/49d2a7e9c96cb9f4
185
+
186
+ h4. Other Active Record Changes
187
+
188
+ * An extra +AS+ was removed from the generated SQL for +has_and_belongs_to_many+ preloading, making it work better for some databases.
189
+ * +ActiveRecord::Base#new_record?+ now returns +false+ rather than +nil+ when confronted with an existing record.
190
+ * A bug in quoting table names in some +has_many :through+ associations was fixed.
191
+ * You can now specify a particular timestamp for +updated_at+ timestamps: +cust = Customer.create(:name => "ABC Industries", :updated_at => 1.day.ago)+
192
+ * Better error messages on failed +find_by_attribute!+ calls.
193
+ * Active Record's +to_xml+ support gets just a little bit more flexible with the addition of a +:camelize+ option.
194
+ * A bug in canceling callbacks from +before_update+ or +before_create+ was fixed.
195
+ * Rake tasks for testing databases via JDBC have been added.
196
+ * +validates_length_of+ will use a custom error message with the +:in+ or +:within+ options (if one is supplied).
197
+ * Counts on scoped selects now work properly, so you can do things like +Account.scoped(:select => "DISTINCT credit_limit").count+.
198
+ * +ActiveRecord::Base#invalid?+ now works as the opposite of +ActiveRecord::Base#valid?+.
199
+
200
+ h3. Action Controller
201
+
202
+ Action Controller rolls out some significant changes to rendering, as well as improvements in routing and other areas, in this release.
203
+
204
+ h4. Unified Rendering
205
+
206
+ +ActionController::Base#render+ is a lot smarter about deciding what to render. Now you can just tell it what to render and expect to get the right results. In older versions of Rails, you often need to supply explicit information to render:
207
+
208
+ <ruby>
209
+ render :file => '/tmp/random_file.erb'
210
+ render :template => 'other_controller/action'
211
+ render :action => 'show'
212
+ </ruby>
213
+
214
+ Now in Rails 2.3, you can just supply what you want to render:
215
+
216
+ <ruby>
217
+ render '/tmp/random_file.erb'
218
+ render 'other_controller/action'
219
+ render 'show'
220
+ render :show
221
+ </ruby>
222
+ Rails chooses between file, template, and action depending on whether there is a leading slash, an embedded slash, or no slash at all in what's to be rendered. Note that you can also use a symbol instead of a string when rendering an action. Other rendering styles (+:inline+, +:text+, +:update+, +:nothing+, +:json+, +:xml+, +:js+) still require an explicit option.
223
+
224
+ h4. Application Controller Renamed
225
+
226
+ If you're one of the people who has always been bothered by the special-case naming of +application.rb+, rejoice! It's been reworked to be application_controller.rb in Rails 2.3. In addition, there's a new rake task, +rake rails:update:application_controller+ to do this automatically for you - and it will be run as part of the normal +rake rails:update+ process.
227
+
228
+ * More Information:
229
+ ** "The Death of Application.rb":http://afreshcup.com/2008/11/17/rails-2x-the-death-of-applicationrb/
230
+ ** "What's New in Edge Rails: Application.rb Duality is no More":http://ryandaigle.com/articles/2008/11/19/what-s-new-in-edge-rails-application-rb-duality-is-no-more
231
+
232
+ h4. HTTP Digest Authentication Support
233
+
234
+ Rails now has built-in support for HTTP digest authentication. To use it, you call +authenticate_or_request_with_http_digest+ with a block that returns the user’s password (which is then hashed and compared against the transmitted credentials):
235
+
236
+ <ruby>
237
+ class PostsController < ApplicationController
238
+ Users = {"dhh" => "secret"}
239
+ before_filter :authenticate
240
+
241
+ def secret
242
+ render :text => "Password Required!"
243
+ end
244
+
245
+ private
246
+ def authenticate
247
+ realm = "Application"
248
+ authenticate_or_request_with_http_digest(realm) do |name|
249
+ Users[name]
250
+ end
251
+ end
252
+ end
253
+ </ruby>
254
+
255
+ * Lead Contributor: "Gregg Kellogg":http://www.kellogg-assoc.com/
256
+ * More Information: "What's New in Edge Rails: HTTP Digest Authentication":http://ryandaigle.com/articles/2009/1/30/what-s-new-in-edge-rails-http-digest-authentication
257
+
258
+ h4. More Efficient Routing
259
+
260
+ There are a couple of significant routing changes in Rails 2.3. The +formatted_+ route helpers are gone, in favor just passing in +:format+ as an option. This cuts down the route generation process by 50% for any resource - and can save a substantial amount of memory (up to 100MB on large applications). If your code uses the +formatted_+ helpers, it will still work for the time being - but that behavior is deprecated and your application will be more efficient if you rewrite those routes using the new standard. Another big change is that Rails now supports multiple routing files, not just +routes.rb+. You can use +RouteSet#add_configuration_file+ to bring in more routes at any time - without clearing the currently-loaded routes. While this change is most useful for Engines, you can use it in any application that needs to load routes in batches.
261
+
262
+ * Lead Contributors: "Aaron Batalion":http://blog.hungrymachine.com/
263
+
264
+ h4. Rack-based Lazy-loaded Sessions
265
+
266
+ A big change pushed the underpinnings of Action Controller session storage down to the Rack level. This involved a good deal of work in the code, though it should be completely transparent to your Rails applications (as a bonus, some icky patches around the old CGI session handler got removed). It's still significant, though, for one simple reason: non-Rails Rack applications have access to the same session storage handlers (and therefore the same session) as your Rails applications. In addition, sessions are now lazy-loaded (in line with the loading improvements to the rest of the framework). This means that you no longer need to explicitly disable sessions if you don't want them; just don't refer to them and they won't load.
267
+
268
+ h4. MIME Type Handling Changes
269
+
270
+ There are a couple of changes to the code for handling MIME types in Rails. First, +MIME::Type+ now implements the +=~+ operator, making things much cleaner when you need to check for the presence of a type that has synonyms:
271
+
272
+ <ruby>
273
+ if content_type && Mime::JS =~ content_type
274
+ # do something cool
275
+ end
276
+
277
+ Mime::JS =~ "text/javascript" => true
278
+ Mime::JS =~ "application/javascript" => true
279
+ </ruby>
280
+
281
+ The other change is that the framework now uses the +Mime::JS+ when checking for javascript in various spots, making it handle those alternatives cleanly.
282
+
283
+ * Lead Contributor: "Seth Fitzsimmons":http://www.workingwithrails.com/person/5510-seth-fitzsimmons
284
+
285
+ h4. Optimization of +respond_to+
286
+
287
+ In some of the first fruits of the Rails-Merb team merger, Rails 2.3 includes some optimizations for the +respond_to+ method, which is of course heavily used in many Rails applications to allow your controller to format results differently based on the MIME type of the incoming request. After eliminating a call to +method_missing+ and some profiling and tweaking, we're seeing an 8% improvement in the number of requests per second served with a simple +respond_to+ that switches between three formats. The best part? No change at all required to the code of your application to take advantage of this speedup.
288
+
289
+ h4. Improved Caching Performance
290
+
291
+ Rails now keeps a per-request local cache of read from the remote cache stores, cutting down on unnecessary reads and leading to better site performance. While this work was originally limited to +MemCacheStore+, it is available to any remote store than implements the required methods.
292
+
293
+ * Lead Contributor: "Nahum Wild":http://www.motionstandingstill.com/
294
+
295
+ h4. Localized Views
296
+
297
+ Rails can now provide localized views, depending on the locale that you have set. For example, suppose you have a +Posts+ controller with a +show+ action. By default, this will render +app/views/posts/show.html.erb+. But if you set +I18n.locale = :da+, it will render +app/views/posts/show.da.html.erb+. If the localized template isn't present, the undecorated version will be used. Rails also includes +I18n#available_locales+ and +I18n::SimpleBackend#available_locales+, which return an array of the translations that are available in the current Rails project.
298
+
299
+ In addition, you can use the same scheme to localize the rescue files in the +public+ directory: +public/500.da.html+ or +public/404.en.html+ work, for example.
300
+
301
+ h4. Partial Scoping for Translations
302
+
303
+ A change to the translation API makes things easier and less repetitive to write key translations within partials. If you call +translate(".foo")+ from the +people/index.html.erb+ template, you'll actually be calling +I18n.translate("people.index.foo")+ If you don't prepend the key with a period, then the API doesn't scope, just as before.
304
+
305
+ h4. Other Action Controller Changes
306
+
307
+ * ETag handling has been cleaned up a bit: Rails will now skip sending an ETag header when there's no body to the response or when sending files with +send_file+.
308
+ * The fact that Rails checks for IP spoofing can be a nuisance for sites that do heavy traffic with cell phones, because their proxies don't generally set things up right. If that's you, you can now set +ActionController::Base.ip_spoofing_check = false+ to disable the check entirely.
309
+ * +ActionController::Dispatcher+ now implements its own middleware stack, which you can see by running +rake middleware+.
310
+ * Cookie sessions now have persistent session identifiers, with API compatibility with the server-side stores.
311
+ * You can now use symbols for the +:type+ option of +send_file+ and +send_data+, like this: +send_file("fabulous.png", :type => :png)+.
312
+ * The +:only+ and +:except+ options for +map.resources+ are no longer inherited by nested resources.
313
+ * The bundled memcached client has been updated to version 1.6.4.99.
314
+ * The +expires_in+, +stale?+, and +fresh_when+ methods now accept a +:public+ option to make them work well with proxy caching.
315
+ * The +:requirements+ option now works properly with additional RESTful member routes.
316
+ * Shallow routes now properly respect namespaces.
317
+ * +polymorphic_url+ does a better job of handling objects with irregular plural names.
318
+
319
+ h3. Action View
320
+
321
+ Action View in Rails 2.3 picks up nested model forms, improvements to +render+, more flexible prompts for the date select helpers, and a speedup in asset caching, among other things.
322
+
323
+ h4. Nested Object Forms
324
+
325
+ Provided the parent model accepts nested attributes for the child objects (as discussed in the Active Record section), you can create nested forms using +form_for+ and +field_for+. These forms can be nested arbitrarily deep, allowing you to edit complex object hierarchies on a single view without excessive code. For example, given this model:
326
+
327
+ <ruby>
328
+ class Customer < ActiveRecord::Base
329
+ has_many :orders
330
+
331
+ accepts_nested_attributes_for :orders, :allow_destroy => true
332
+ end
333
+ </ruby>
334
+
335
+ You can write this view in Rails 2.3:
336
+
337
+ <erb>
338
+ <% form_for @customer do |customer_form| %>
339
+ <div>
340
+ <%= customer_form.label :name, 'Customer Name:' %>
341
+ <%= customer_form.text_field :name %>
342
+ </div>
343
+
344
+ <!-- Here we call fields_for on the customer_form builder instance.
345
+ The block is called for each member of the orders collection. -->
346
+ <% customer_form.fields_for :orders do |order_form| %>
347
+ <p>
348
+ <div>
349
+ <%= order_form.label :number, 'Order Number:' %>
350
+ <%= order_form.text_field :number %>
351
+ </div>
352
+
353
+ <!-- The allow_destroy option in the model enables deletion of
354
+ child records. -->
355
+ <% unless order_form.object.new_record? %>
356
+ <div>
357
+ <%= order_form.label :_delete, 'Remove:' %>
358
+ <%= order_form.check_box :_delete %>
359
+ </div>
360
+ <% end %>
361
+ </p>
362
+ <% end %>
363
+
364
+ <%= customer_form.submit %>
365
+ <% end %>
366
+ </erb>
367
+
368
+ * Lead Contributor: "Eloy Duran":http://www.superalloy.nl/blog/
369
+ * More Information:
370
+ ** "Nested Model Forms":http://weblog.rubyonrails.org/2009/1/26/nested-model-forms
371
+ ** "complex-form-examples":http://github.com/alloy/complex-form-examples/tree/nested_attributes
372
+ ** "What's New in Edge Rails: Nested Object Forms":http://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes
373
+
374
+ h4. Smart Rendering of Partials
375
+
376
+ The render method has been getting smarter over the years, and it's even smarter now. If you have an object or a collection and an appropriate partial, and the naming matches up, you can now just render the object and things will work. For example, in Rails 2.3, these render calls will work in your view (assuming sensible naming):
377
+
378
+ <ruby>
379
+ # Equivalent of render :partial => 'articles/_article',
380
+ # :object => @article
381
+ render @article
382
+
383
+ # Equivalent of render :partial => 'articles/_article',
384
+ # :collection => @articles
385
+ render @articles
386
+ </ruby>
387
+
388
+ * More Information: "What's New in Edge Rails: render Stops Being High-Maintenance":http://ryandaigle.com/articles/2008/11/20/what-s-new-in-edge-rails-render-stops-being-high-maintenance
389
+
390
+ h4. Prompts for Date Select Helpers
391
+
392
+ In Rails 2.3, you can supply custom prompts for the various date select helpers (+date_select+, +time_select+, and +datetime_select+), the same way you can with collection select helpers. You can supply a prompt string or a hash of individual prompt strings for the various components. You can also just set +:prompt+ to +true+ to use the custom generic prompt:
393
+
394
+ <ruby>
395
+ select_datetime(DateTime.now, :prompt => true)
396
+
397
+ select_datetime(DateTime.now, :prompt => "Choose date and time")
398
+
399
+ select_datetime(DateTime.now, :prompt =>
400
+ {:day => 'Choose day', :month => 'Choose month',
401
+ :year => 'Choose year', :hour => 'Choose hour',
402
+ :minute => 'Choose minute'})
403
+ </ruby>
404
+
405
+ * Lead Contributor: "Sam Oliver":http://samoliver.com/
406
+
407
+ h4. AssetTag Timestamp Caching
408
+
409
+ You're likely familiar with Rails' practice of adding timestamps to static asset paths as a "cache buster." This helps ensure that stale copies of things like images and stylesheets don't get served out of the user's browser cache when you change them on the server. You can now modify this behavior with the +cache_asset_timestamps+ configuration option for Action View. If you enable the cache, then Rails will calculate the timestamp once when it first serves an asset, and save that value. This means fewer (expensive) file system calls to serve static assets - but it also means that you can't modify any of the assets while the server is running and expect the changes to get picked up by clients.
410
+
411
+ h4. Asset Hosts as Objects
412
+
413
+ Asset hosts get more flexible in edge Rails with the ability to declare an asset host as a specific object that responds to a call. This allows you to to implement any complex logic you need in your asset hosting.
414
+
415
+ * More Information: "asset-hosting-with-minimum-ssl":http://github.com/dhh/asset-hosting-with-minimum-ssl/tree/master
416
+
417
+ h4. grouped_options_for_select Helper Method
418
+
419
+ Action View already had a bunch of helpers to aid in generating select controls, but now there's one more: +grouped_options_for_select+. This one accepts an array or hash of strings, and converts them into a string of +option+ tags wrapped with +optgroup+ tags. For example:
420
+
421
+ <ruby>
422
+ grouped_options_for_select([["Hats", ["Baseball Cap","Cowboy Hat"]]],
423
+ "Cowboy Hat", "Choose a product...")
424
+ </ruby>
425
+
426
+ returns
427
+
428
+ <ruby>
429
+ <option value="">Choose a product...</option>
430
+ <optgroup label="Hats">
431
+ <option value="Baseball Cap">Baseball Cap</option>
432
+ <option selected="selected" value="Cowboy Hat">Cowboy Hat</option>
433
+ </optgroup>
434
+ </ruby>
435
+
436
+ h4. Disabled Option Tags for Form Select Helpers
437
+
438
+ The form select helpers (such as +select+ and +options_for_select+) now support a +:disabled+ option, which can take a single value or an array of values to be disabled in the resulting tags:
439
+
440
+ <ruby>
441
+ select(:post, :category, Post::CATEGORIES, :disabled => ‘private‘)
442
+ </ruby>
443
+
444
+ returns
445
+
446
+ <ruby>
447
+ <select name=“post[category]“>
448
+ <option>story</option>
449
+ <option>joke</option>
450
+ <option>poem</option>
451
+ <option disabled=“disabled“>private</option>
452
+ </select>
453
+ </ruby>
454
+
455
+ You can also use an anonymous function to determine at runtime which options from collections will be selected and/or disabled:
456
+
457
+ <ruby>
458
+ options_from_collection_for_select(@product.sizes, :name, :id, :disabled => lambda{|size| size.out_of_stock?})
459
+ </ruby>
460
+
461
+ * Lead Contributor: "Tekin Suleyman":http://tekin.co.uk/
462
+ * More Information: "New in rails 2.3 - disabled option tags and lambdas for selecting and disabling options from collections":http://tekin.co.uk/2009/03/new-in-rails-23-disabled-option-tags-and-lambdas-for-selecting-and-disabling-options-from-collections/
463
+
464
+ h4. A Note About Template Loading
465
+
466
+ Rails 2.3 includes the ability to enable or disable cached templates for any particular environment. Cached templates give you a speed boost because they don't check for a new template file when they're rendered - but they also mean that you can't replace a template "on the fly" without restarting the server.
467
+
468
+ In most cases, you'll want template caching to be turned on in production, which you can do by making a setting in your +production.rb+ file:
469
+
470
+ <ruby>
471
+ config.action_view.cache_template_loading = true
472
+ </ruby>
473
+
474
+ This line will be generated for you by default in a new Rails 2.3 application. If you've upgraded from an older version of Rails, Rails will default to caching templates in production and test but not in development.
475
+
476
+ h4. Other Action View Changes
477
+
478
+ * Token generation for CSRF protection has been simplified; now Rails uses a simple random string generated by +ActiveSupport::SecureRandom+ rather than mucking around with session IDs.
479
+ * +auto_link+ now properly applies options (such as +:target+ and +:class+) to generated e-mail links.
480
+ * The +autolink+ helper has been refactored to make it a bit less messy and more intuitive.
481
+ * +current_page?+ now works properly even when there are multiple query parameters in the URL.
482
+
483
+ h3. Active Support
484
+
485
+ Active Support has a few interesting changes, including the introduction of +Object#try+.
486
+
487
+ h4. Object#try
488
+
489
+ A lot of folks have adopted the notion of using try() to attempt operations on objects. It's especially helpful in views where you can avoid nil-checking by writing code like +&lt;%= @person.try(:name) %&gt;+. Well, now it's baked right into Rails. As implemented in Rails, it raises +NoMethodError+ on private methods and always returns +nil+ if the object is nil.
490
+
491
+ * More Information: "try()":http://ozmm.org/posts/try.html.
492
+
493
+ h4. Object#tap Backport
494
+
495
+ +Object#tap+ is an addition to "Ruby 1.9":http://www.ruby-doc.org/core-1.9/classes/Object.html#M000309 and 1.8.7 that is similar to the +returning+ method that Rails has had for a while: it yields to a block, and then returns the object that was yielded. Rails now includes code to make this available under older versions of Ruby as well.
496
+
497
+ h4. Swappable Parsers for XMLmini
498
+
499
+ The support for XML parsing in ActiveSupport has been made more flexible by allowing you to swap in different parsers. By default, it uses the standard REXML implementation, but you can easily specify the faster LibXML or Nokogiri implementations for your own applications, provided you have the appropriate gems installed:
500
+
501
+ <ruby>
502
+ XmlMini.backend = 'LibXML'
503
+ </ruby>
504
+
505
+ * Lead Contributor: "Bart ten Brinke":http://www.movesonrails.com/
506
+ * Lead Contributor: "Aaron Patterson":http://tenderlovemaking.com/
507
+
508
+ h4. Fractional seconds for TimeWithZone
509
+
510
+ The +Time+ and +TimeWithZone+ classes include an +xmlschema+ method to return the time in an XML-friendly string. As of Rails 2.3, +TimeWithZone+ supports the same argument for specifying the number of digits in the fractional second part of the returned string that +Time+ does:
511
+
512
+ <ruby>
513
+ >> Time.zone.now.xmlschema(6)
514
+ => "2009-01-16T13:00:06.13653Z"
515
+ </ruby>
516
+
517
+ * Lead Contributor: "Nicholas Dainty":http://www.workingwithrails.com/person/13536-nicholas-dainty
518
+
519
+ h4. JSON Key Quoting
520
+
521
+ If you look up the spec on the "json.org" site, you'll discover that all keys in a JSON structure must be strings, and they must be quoted with double quotes. Starting with Rails 2.3, we do the right thing here, even with numeric keys.
522
+
523
+ h4. Other Active Support Changes
524
+
525
+ * You can use +Enumerable#none?+ to check that none of the elements match the supplied block.
526
+ * If you're using Active Support "delegates":http://afreshcup.com/2008/10/19/coming-in-rails-22-delegate-prefixes/, the new +:allow_nil+ option lets you return +nil+ instead of raising an exception when the target object is nil.
527
+ * +ActiveSupport::OrderedHash+: now implements +each_key+ and +each_value+.
528
+ * +ActiveSupport::MessageEncryptor+ provides a simple way to encrypt information for storage in an untrusted location (like cookies).
529
+ * Active Support's +from_xml+ no longer depends on XmlSimple. Instead, Rails now includes its own XmlMini implementation, with just the functionality that it requires. This lets Rails dispense with the bundled copy of XmlSimple that it's been carting around.
530
+ * If you memoize a private method, the result will now be private.
531
+ * +String#parameterize+ accepts an optional separator: +"Quick Brown Fox".parameterize('_') => "quick_brown_fox"+.
532
+ * +number_to_phone+ accepts 7-digit phone numbers now.
533
+ * +ActiveSupport::Json.decode+ now handles +\u0000+ style escape sequences.
534
+
535
+ h3. Railties
536
+
537
+ In addition to the Rack changes covered above, Railties (the core code of Rails itself) sports a number of significant changes, including Rails Metal, application templates, and quiet backtraces.
538
+
539
+ h4. Rails Metal
540
+
541
+ Rails Metal is a new mechanism that provides superfast endpoints inside of your Rails applications. Metal classes bypass routing and Action Controller to give you raw speed (at the cost of all the things in Action Controller, of course). This builds on all of the recent foundation work to make Rails a Rack application with an exposed middleware stack. Metal endpoints can be loaded from your application or from plugins.
542
+
543
+ * More Information:
544
+ ** "Introducing Rails Metal":http://weblog.rubyonrails.org/2008/12/17/introducing-rails-metal
545
+ ** "Rails Metal: a micro-framework with the power of Rails":http://soylentfoo.jnewland.com/articles/2008/12/16/rails-metal-a-micro-framework-with-the-power-of-rails-m
546
+ ** "Metal: Super-fast Endpoints within your Rails Apps":http://www.railsinside.com/deployment/180-metal-super-fast-endpoints-within-your-rails-apps.html
547
+ ** "What's New in Edge Rails: Rails Metal":http://ryandaigle.com/articles/2008/12/18/what-s-new-in-edge-rails-rails-metal
548
+
549
+ h4. Application Templates
550
+
551
+ Rails 2.3 incorporates Jeremy McAnally's "rg":http://github.com/jeremymcanally/rg/tree/master application generator. What this means is that we now have template-based application generation built right into Rails; if you have a set of plugins you include in every application (among many other use cases), you can just set up a template once and use it over and over again when you run the +rails+ command. There's also a rake task to apply a template to an existing application:
552
+
553
+ <ruby>
554
+ rake rails:template LOCATION=~/template.rb
555
+ </ruby>
556
+
557
+ This will layer the changes from the template on top of whatever code the project already contains.
558
+
559
+ * Lead Contributor: "Jeremy McAnally":http://www.jeremymcanally.com/
560
+ * More Info:"Rails templates":http://m.onkey.org/2008/12/4/rails-templates
561
+
562
+ h4. Quieter Backtraces
563
+
564
+ Building on Thoughtbot's "Quiet Backtrace":http://www.thoughtbot.com/projects/quietbacktrace plugin, which allows you to selectively remove lines from +Test::Unit+ backtraces, Rails 2.3 implements +ActiveSupport::BacktraceCleaner+ and +Rails::BacktraceCleaner+ in core. This supports both filters (to perform regex-based substitutions on backtrace lines) and silencers (to remove backtrace lines entirely). Rails automatically adds silencers to get rid of the most common noise in a new application, and builds a +config/backtrace_silencers.rb+ file to hold your own additions. This feature also enables prettier printing from any gem in the backtrace.
565
+
566
+ h4. Faster Boot Time in Development Mode with Lazy Loading/Autoload
567
+
568
+ Quite a bit of work was done to make sure that bits of Rails (and its dependencies) are only brought into memory when they're actually needed. The core frameworks - Active Support, Active Record, Action Controller, Action Mailer and Action View - are now using +autoload+ to lazy-load their individual classes. This work should help keep the memory footprint down and improve overall Rails performance.
569
+
570
+ You can also specify (by using the new +preload_frameworks+ option) whether the core libraries should be autoloaded at startup. This defaults to +false+ so that Rails autoloads itself piece-by-piece, but there are some circumstances where you still need to bring in everything at once - Passenger and JRuby both want to see all of Rails loaded together.
571
+
572
+ h4. rake gem Task Rewrite
573
+
574
+ The internals of the various <code>rake gem</code> tasks have been substantially revised, to make the system work better for a variety of cases. The gem system now knows the difference between development and runtime dependencies, has a more robust unpacking system, gives better information when querying for the status of gems, and is less prone to "chicken and egg" dependency issues when you're bringing things up from scratch. There are also fixes for using gem commands under JRuby and for dependencies that try to bring in external copies of gems that are already vendored.
575
+
576
+ * Lead Contributor: "David Dollar":http://www.workingwithrails.com/person/12240-david-dollar
577
+
578
+ h4. Other Railties Changes
579
+
580
+ * The instructions for updating a CI server to build Rails have been updated and expanded.
581
+ * Internal Rails testing has been switched from +Test::Unit::TestCase+ to +ActiveSupport::TestCase+, and the Rails core requires Mocha to test.
582
+ * The default +environment.rb+ file has been decluttered.
583
+ * The dbconsole script now lets you use an all-numeric password without crashing.
584
+ * +Rails.root+ now returns a +Pathname+ object, which means you can use it directly with the +join+ method to "clean up existing code":http://afreshcup.com/2008/12/05/a-little-rails_root-tidiness/ that uses +File.join+.
585
+ * Various files in /public that deal with CGI and FCGI dispatching are no longer generated in every Rails application by default (you can still get them if you need them by adding +--with-dispatches+ when you run the +rails+ command, or add them later with +rake rails:generate_dispatchers+).
586
+ * Rails Guides have been converted from AsciiDoc to Textile markup.
587
+ * Scaffolded views and controllers have been cleaned up a bit.
588
+ * +script/server+ now accepts a <tt>--path</tt> argument to mount a Rails application from a specific path.
589
+ * If any configured gems are missing, the gem rake tasks will skip loading much of the environment. This should solve many of the "chicken-and-egg" problems where rake gems:install couldn't run because gems were missing.
590
+ * Gems are now unpacked exactly once. This fixes issues with gems (hoe, for instance) which are packed with read-only permissions on the files.
591
+
592
+ h3. Deprecated
593
+
594
+ A few pieces of older code are deprecated in this release:
595
+
596
+ * If you're one of the (fairly rare) Rails developers who deploys in a fashion that depends on the inspector, reaper, and spawner scripts, you'll need to know that those scripts are no longer included in core Rails. If you need them, you'll be able to pick up copies via the "irs_process_scripts":http://github.com/rails/irs_process_scripts/tree plugin.
597
+ * +render_component+ goes from "deprecated" to "nonexistent" in Rails 2.3. If you still need it, you can install the "render_component plugin":http://github.com/rails/render_component/tree/master.
598
+ * Support for Rails components has been removed.
599
+ * If you were one of the people who got used to running +script/performance/request+ to look at performance based on integration tests, you need to learn a new trick: that script has been removed from core Rails now. There’s a new request_profiler plugin that you can install to get the exact same functionality back.
600
+ * +ActionController::Base#session_enabled?+ is deprecated because sessions are lazy-loaded now.
601
+ * The +:digest+ and +:secret+ options to +protect_from_forgery+ are deprecated and have no effect.
602
+ * Some integration test helpers have been removed. +response.headers["Status"]+ and +headers["Status"]+ will no longer return anything. Rack does not allow "Status" in its return headers. However you can still use the +status+ and +status_message+ helpers. +response.headers["cookie"]+ and +headers["cookie"]+ will no longer return any CGI cookies. You can inspect +headers["Set-Cookie"]+ to see the raw cookie header or use the +cookies+ helper to get a hash of the cookies sent to the client.
603
+ * +formatted_polymorphic_url+ is deprecated. Use +polymorphic_url+ with +:format+ instead.
604
+ * The +:http_only+ option in +ActionController::Response#set_cookie+ has been renamed to +:httponly+.
605
+ * The +:connector+ and +:skip_last_comma+ options of +to_sentence+ have been replaced by +:words_connnector+, +:two_words_connector+, and +:last_word_connector+ options.
606
+ * Posting a multipart form with an empty +file_field+ control used to submit an empty string to the controller. Now it submits a nil, due to differences between Rack's multipart parser and the old Rails one.
607
+
608
+ h3. Credits
609
+
610
+ Release notes compiled by "Mike Gunderloy":http://afreshcup.com. This version of the Rails 2.3 release notes was compiled based on RC2 of Rails 2.3.