mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix broken links to ryandaigle.com [ci skip]
This commit is contained in:
parent
895add262f
commit
c6ca3de5c6
2 changed files with 14 additions and 14 deletions
|
@ -146,7 +146,7 @@ development:
|
|||
|
||||
* Lead Contributor: [Nick Sieger](http://blog.nicksieger.com/)
|
||||
* More information:
|
||||
* [What's New in Edge Rails: Connection Pools](http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-connection-pools)
|
||||
* [What's New in Edge Rails: Connection Pools](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-connection-pools)
|
||||
|
||||
### Hashes for Join Table Conditions
|
||||
|
||||
|
@ -166,7 +166,7 @@ Product.all(:joins => :photos, :conditions => { :photos => { :copyright => false
|
|||
```
|
||||
|
||||
* More information:
|
||||
* [What's New in Edge Rails: Easy Join Table Conditions](http://ryandaigle.com/articles/2008/7/7/what-s-new-in-edge-rails-easy-join-table-conditions)
|
||||
* [What's New in Edge Rails: Easy Join Table Conditions](http://archives.ryandaigle.com/articles/2008/7/7/what-s-new-in-edge-rails-easy-join-table-conditions)
|
||||
|
||||
### New Dynamic Finders
|
||||
|
||||
|
@ -239,7 +239,7 @@ This will enable recognition of (among others) these routes:
|
|||
* Lead Contributor: [S. Brent Faulkner](http://www.unwwwired.net/)
|
||||
* More information:
|
||||
* [Rails Routing from the Outside In](routing.html#nested-resources)
|
||||
* [What's New in Edge Rails: Shallow Routes](http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-shallow-routes)
|
||||
* [What's New in Edge Rails: Shallow Routes](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-shallow-routes)
|
||||
|
||||
### Method Arrays for Member or Collection Routes
|
||||
|
||||
|
@ -287,7 +287,7 @@ Action Mailer
|
|||
Action Mailer now supports mailer layouts. You can make your HTML emails as pretty as your in-browser views by supplying an appropriately-named layout - for example, the `CustomerMailer` class expects to use `layouts/customer_mailer.html.erb`.
|
||||
|
||||
* More information:
|
||||
* [What's New in Edge Rails: Mailer Layouts](http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-mailer-layouts)
|
||||
* [What's New in Edge Rails: Mailer Layouts](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-mailer-layouts)
|
||||
|
||||
Action Mailer now offers built-in support for GMail's SMTP servers, by turning on STARTTLS automatically. This requires Ruby 1.8.7 to be installed.
|
||||
|
||||
|
@ -321,7 +321,7 @@ Other features of memoization include `unmemoize`, `unmemoize_all`, and `memoize
|
|||
|
||||
* Lead Contributor: [Josh Peek](http://joshpeek.com/)
|
||||
* More information:
|
||||
* [What's New in Edge Rails: Easy Memoization](http://ryandaigle.com/articles/2008/7/16/what-s-new-in-edge-rails-memoization)
|
||||
* [What's New in Edge Rails: Easy Memoization](http://archives.ryandaigle.com/articles/2008/7/16/what-s-new-in-edge-rails-memoization)
|
||||
* [Memo-what? A Guide to Memoization](http://www.railway.at/articles/2008/09/20/a-guide-to-memoization)
|
||||
|
||||
### each_with_object
|
||||
|
@ -391,7 +391,7 @@ You can unpack or install a single gem by specifying `GEM=_gem_name_` on the com
|
|||
|
||||
* Lead Contributor: [Matt Jones](http://github.com/al2o3cr)
|
||||
* More information:
|
||||
* [What's New in Edge Rails: Gem Dependencies](http://ryandaigle.com/articles/2008/4/1/what-s-new-in-edge-rails-gem-dependencies)
|
||||
* [What's New in Edge Rails: Gem Dependencies](http://archives.ryandaigle.com/articles/2008/4/1/what-s-new-in-edge-rails-gem-dependencies)
|
||||
* [Rails 2.1.2 and 2.2RC1: Update Your RubyGems](http://afreshcup.com/2008/10/25/rails-212-and-22rc1-update-your-rubygems/)
|
||||
* [Detailed discussion on Lighthouse](http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/1128)
|
||||
|
||||
|
|
|
@ -125,14 +125,14 @@ Order.scoped_by_customer_id(12).scoped_by_status("open")
|
|||
There's nothing to define to use dynamic scopes: they just work.
|
||||
|
||||
* Lead Contributor: [Yaroslav Markin](http://evilmartians.com/)
|
||||
* 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.)
|
||||
* More Information: [What's New in Edge Rails: Dynamic Scope Methods](http://archives.ryandaigle.com/articles/2008/12/29/what-s-new-in-edge-rails-dynamic-scope-methods.)
|
||||
|
||||
### Default Scopes
|
||||
|
||||
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).
|
||||
|
||||
* Lead Contributor: Paweł Kondzior
|
||||
* 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)
|
||||
* More Information: [What's New in Edge Rails: Default Scoping](http://archives.ryandaigle.com/articles/2008/11/18/what-s-new-in-edge-rails-default-scoping)
|
||||
|
||||
### Batch Processing
|
||||
|
||||
|
@ -158,7 +158,7 @@ Note that you should only use this method for batch processing: for small number
|
|||
|
||||
* More Information (at that point the convenience method was called just `each`):
|
||||
* [Rails 2.3: Batch Finding](http://afreshcup.com/2009/02/23/rails-23-batch-finding/)
|
||||
* [What's New in Edge Rails: Batched Find](http://ryandaigle.com/articles/2009/2/23/what-s-new-in-edge-rails-batched-find)
|
||||
* [What's New in Edge Rails: Batched Find](http://archives.ryandaigle.com/articles/2009/2/23/what-s-new-in-edge-rails-batched-find)
|
||||
|
||||
### Multiple Conditions for Callbacks
|
||||
|
||||
|
@ -235,7 +235,7 @@ If you're one of the people who has always been bothered by the special-case nam
|
|||
|
||||
* More Information:
|
||||
* [The Death of Application.rb](http://afreshcup.com/2008/11/17/rails-2x-the-death-of-applicationrb/)
|
||||
* [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)
|
||||
* [What's New in Edge Rails: Application.rb Duality is no More](http://archives.ryandaigle.com/articles/2008/11/19/what-s-new-in-edge-rails-application-rb-duality-is-no-more)
|
||||
|
||||
### HTTP Digest Authentication Support
|
||||
|
||||
|
@ -261,7 +261,7 @@ end
|
|||
```
|
||||
|
||||
* Lead Contributor: [Gregg Kellogg](http://www.kellogg-assoc.com/)
|
||||
* 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)
|
||||
* More Information: [What's New in Edge Rails: HTTP Digest Authentication](http://archives.ryandaigle.com/articles/2009/1/30/what-s-new-in-edge-rails-http-digest-authentication)
|
||||
|
||||
### More Efficient Routing
|
||||
|
||||
|
@ -378,7 +378,7 @@ You can write this view in Rails 2.3:
|
|||
* More Information:
|
||||
* [Nested Model Forms](http://weblog.rubyonrails.org/2009/1/26/nested-model-forms)
|
||||
* [complex-form-examples](http://github.com/alloy/complex-form-examples)
|
||||
* [What's New in Edge Rails: Nested Object Forms](http://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes)
|
||||
* [What's New in Edge Rails: Nested Object Forms](http://archives.ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes)
|
||||
|
||||
### Smart Rendering of Partials
|
||||
|
||||
|
@ -394,7 +394,7 @@ render @article
|
|||
render @articles
|
||||
```
|
||||
|
||||
* 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)
|
||||
* More Information: [What's New in Edge Rails: render Stops Being High-Maintenance](http://archives.ryandaigle.com/articles/2008/11/20/what-s-new-in-edge-rails-render-stops-being-high-maintenance)
|
||||
|
||||
### Prompts for Date Select Helpers
|
||||
|
||||
|
@ -555,7 +555,7 @@ Rails Metal is a new mechanism that provides superfast endpoints inside of your
|
|||
* [Introducing Rails Metal](http://weblog.rubyonrails.org/2008/12/17/introducing-rails-metal)
|
||||
* [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)
|
||||
* [Metal: Super-fast Endpoints within your Rails Apps](http://www.railsinside.com/deployment/180-metal-super-fast-endpoints-within-your-rails-apps.html)
|
||||
* [What's New in Edge Rails: Rails Metal](http://ryandaigle.com/articles/2008/12/18/what-s-new-in-edge-rails-rails-metal)
|
||||
* [What's New in Edge Rails: Rails Metal](http://archives.ryandaigle.com/articles/2008/12/18/what-s-new-in-edge-rails-rails-metal)
|
||||
|
||||
### Application Templates
|
||||
|
||||
|
|
Loading…
Reference in a new issue