From f8079b815b41c5f7ecac736a232471f285fa0330 Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Fri, 24 Oct 2008 17:59:45 +0530 Subject: Add some more info to the release notes --- railties/doc/guides/html/2_2_release_notes.html | 36 ++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) (limited to 'railties/doc/guides/html') diff --git a/railties/doc/guides/html/2_2_release_notes.html b/railties/doc/guides/html/2_2_release_notes.html index c00165efb0..199a673a06 100644 --- a/railties/doc/guides/html/2_2_release_notes.html +++ b/railties/doc/guides/html/2_2_release_notes.html @@ -229,6 +229,8 @@ ul#navMain {
  • New Dynamic Finders
  • +
  • Associations Respect Private/Protected Scope
  • +
  • Other ActiveRecord Changes
  • @@ -502,6 +504,11 @@ More information :
    -

    5.5. Other ActiveRecord Changes

    +

    5.5. Associations Respect Private/Protected Scope

    +

    Active Record association proxies now respect the scope of methods on the proxied object. Previously (given User has_one :account) @user.account.private_method would call the private method on the associated Account object. That fails in Rails 2.2; if you need this functionality, you should use @user.account.send(:private_method) (or make the method public instead of private or protected). Please note that if you're overriding method_missing, you should also override respond_to to match the behavior in order for associations to function normally.

    +
    +

    5.6. Other ActiveRecord Changes

    +
    +
    +
    def partial_with_implicit_local_assignment
    +  @customer = Customer.new("Marcel")
    +  render :partial => "customer"
    +end
    +
    +

    Previously the above code made available a local variable called customer available inside the partial customer. You should explicitly pass all the variables via :locals hash now.

    +
      +
    • +

      country_select has been removed. See the deprecation page for more information and a plugin replacement.

    • -- cgit v1.2.3