Hi all am learning rails 3.2.8 and i found that in routes if i have a controller called User and i have 5 def a, def b,def c and def d. do i need to mention routes to each def because in 2.3.8 you no need to mention routes for each def but when i come to 3.2.8 i have to mention routes for each def in a controller like match ''user/new'' => ''user#new'' match ''user/create'' => ''user#create'' such way for each def in a controller. is there any other way to write a routes so that you no need to mention routes for each def. Cheers, Kp -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. For more options, visit https://groups.google.com/groups/opt_out.
You can use the resources keyword. On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya < emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi all am learning rails 3.2.8 and i found that in routes if i have a > controller called User and i have 5 def a, def b,def c and def d. do i need > to mention routes to each def because in 2.3.8 you no need to mention > routes for each def but when i come to 3.2.8 i have to mention routes for > each def in a controller like > match ''user/new'' => ''user#new'' > match ''user/create'' => ''user#create'' > such way for each def in a controller. is there any other way to write a > routes so that you no need to mention routes for each def. > > > > Cheers, > Kp > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
any sample code plz On Tue, Sep 25, 2012 at 11:15 AM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> You can use the resources keyword. > > > On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya < > emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Hi all am learning rails 3.2.8 and i found that in routes if i have a >> controller called User and i have 5 def a, def b,def c and def d. do i need >> to mention routes to each def because in 2.3.8 you no need to mention >> routes for each def but when i come to 3.2.8 i have to mention routes for >> each def in a controller like >> match ''user/new'' => ''user#new'' >> match ''user/create'' => ''user#create'' >> such way for each def in a controller. is there any other way to write a >> routes so that you no need to mention routes for each def. >> >> >> >> Cheers, >> Kp >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
You can use resources in following three different ways. resources :users All the methods in Users controller will have routes defined if you add above line in your routes.rb file. For example users controller have method #index then you will be able to open the url http://localhost:3000/users. resources :users, :only => [:show, :new, :create] If you use the above line in routes.rb then you will be able to just use the show, new and create actions of your controller. resources :users, :except => [:index, :update, :destroy] By using the above line you will be able to use any action in your controller execpt index, update and destroy. On Tue, Sep 25, 2012 at 12:27 PM, keerthi priya < emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> any sample code plz > > > On Tue, Sep 25, 2012 at 11:15 AM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> You can use the resources keyword. >> >> >> On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya < >> emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> Hi all am learning rails 3.2.8 and i found that in routes if i have a >>> controller called User and i have 5 def a, def b,def c and def d. do i need >>> to mention routes to each def because in 2.3.8 you no need to mention >>> routes for each def but when i come to 3.2.8 i have to mention routes for >>> each def in a controller like >>> match ''user/new'' => ''user#new'' >>> match ''user/create'' => ''user#create'' >>> such way for each def in a controller. is there any other way to write a >>> routes so that you no need to mention routes for each def. >>> >>> >>> >>> Cheers, >>> Kp >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Using the scaffolding will help you observe> rails g scaffold -h # get help > rails g scaffold Product name:string url:stringRefer to the book “agile web development with rails” On Tuesday, September 25, 2012 12:27:46 AM UTC-7, keerthi priya wrote:> > any sample code plz > > On Tue, Sep 25, 2012 at 11:15 AM, KUL KING <kulki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org<javascript:> > > wrote: > >> You can use the resources keyword. >> >> >> On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya <emailtoke...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org<javascript:> >> > wrote: >> >>> Hi all am learning rails 3.2.8 and i found that in routes if i have a >>> controller called User and i have 5 def a, def b,def c and def d. do i need >>> to mention routes to each def because in 2.3.8 you no need to mention >>> routes for each def but when i come to 3.2.8 i have to mention routes for >>> each def in a controller like >>> match ''user/new'' => ''user#new'' >>> match ''user/create'' => ''user#create'' >>> such way for each def in a controller. is there any other way to write a >>> routes so that you no need to mention routes for each def. >>> >>> >>> >>> Cheers, >>> Kp >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonra...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<javascript:> >>> . >>> To unsubscribe from this group, send email to >>> rubyonrails-ta...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonra...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<javascript:> >> . >> To unsubscribe from this group, send email to >> rubyonrails-ta...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/SnZlzJ8s_mgJ. For more options, visit https://groups.google.com/groups/opt_out.
Thank you very much Mr.King On Tue, Sep 25, 2012 at 1:07 PM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> You can use resources in following three different ways. > > resources :users > > All the methods in Users controller will have routes defined if you add > above line in your routes.rb file. For example users controller have method > #index then you will be able to open the url http://localhost:3000/users. > > resources :users, :only => [:show, :new, :create] > > If you use the above line in routes.rb then you will be able to just use > the show, new and create actions of your controller. > > resources :users, :except => [:index, :update, :destroy] > > By using the above line you will be able to use any action in your > controller execpt index, update and destroy. > > > On Tue, Sep 25, 2012 at 12:27 PM, keerthi priya < > emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> any sample code plz >> >> >> On Tue, Sep 25, 2012 at 11:15 AM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> You can use the resources keyword. >>> >>> >>> On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya < >>> emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> Hi all am learning rails 3.2.8 and i found that in routes if i have a >>>> controller called User and i have 5 def a, def b,def c and def d. do i need >>>> to mention routes to each def because in 2.3.8 you no need to mention >>>> routes for each def but when i come to 3.2.8 i have to mention routes for >>>> each def in a controller like >>>> match ''user/new'' => ''user#new'' >>>> match ''user/create'' => ''user#create'' >>>> such way for each def in a controller. is there any other way to write >>>> a routes so that you no need to mention routes for each def. >>>> >>>> >>>> >>>> Cheers, >>>> Kp >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To unsubscribe from this group, send email to >>>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
You are welcome. By the way does it solve your problem? As I am also a newbie in rails with 2-3 months experience. On Tue, Sep 25, 2012 at 3:51 PM, keerthi priya < emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thank you very much Mr.King > > > On Tue, Sep 25, 2012 at 1:07 PM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> You can use resources in following three different ways. >> >> resources :users >> >> All the methods in Users controller will have routes defined if you add >> above line in your routes.rb file. For example users controller have method >> #index then you will be able to open the url http://localhost:3000/users. >> >> resources :users, :only => [:show, :new, :create] >> >> If you use the above line in routes.rb then you will be able to just use >> the show, new and create actions of your controller. >> >> resources :users, :except => [:index, :update, :destroy] >> >> By using the above line you will be able to use any action in your >> controller execpt index, update and destroy. >> >> >> On Tue, Sep 25, 2012 at 12:27 PM, keerthi priya < >> emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> any sample code plz >>> >>> >>> On Tue, Sep 25, 2012 at 11:15 AM, KUL KING <kulking370-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> You can use the resources keyword. >>>> >>>> >>>> On Tue, Sep 25, 2012 at 10:35 AM, keerthi priya < >>>> emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>> >>>>> Hi all am learning rails 3.2.8 and i found that in routes if i have a >>>>> controller called User and i have 5 def a, def b,def c and def d. do i need >>>>> to mention routes to each def because in 2.3.8 you no need to mention >>>>> routes for each def but when i come to 3.2.8 i have to mention routes for >>>>> each def in a controller like >>>>> match ''user/new'' => ''user#new'' >>>>> match ''user/create'' => ''user#create'' >>>>> such way for each def in a controller. is there any other way to write >>>>> a routes so that you no need to mention routes for each def. >>>>> >>>>> >>>>> >>>>> Cheers, >>>>> Kp >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To unsubscribe from this group, send email to >>>>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msg/rubyonrails-talk/-/Tf06HxXUXVgJ. >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To unsubscribe from this group, send email to >>>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
On Tuesday, 25 September 2012 03:39:10 UTC-4, Kashif Umair Liaqat wrote:> > You can use resources in following three different ways. > > resources :users > > All the methods in Users controller will have routes defined if you add > above line in your routes.rb file. For example users controller have method > #index then you will be able to open the url http://localhost:3000/users. >Not quite - only the 7 standard actions (new / create / show / index / edit / update / destroy) will be routed. You can write URLs that look like they go to other actions (/users/some_other_thing) but they''ll actually be routed to the show action. The Routing guide is a great reference for this stuff: http://guides.rubyonrails.org/routing.html --Matt Jones -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/xk3HMCLrR38J. For more options, visit https://groups.google.com/groups/opt_out.
OK. Thanks. On Tue, Sep 25, 2012 at 5:41 PM, Matt Jones <al2o3cr-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > On Tuesday, 25 September 2012 03:39:10 UTC-4, Kashif Umair Liaqat wrote: >> >> You can use resources in following three different ways. >> >> resources :users >> >> All the methods in Users controller will have routes defined if you add >> above line in your routes.rb file. For example users controller have method >> #index then you will be able to open the url http://localhost:3000/users. >> > > Not quite - only the 7 standard actions (new / create / show / index / > edit / update / destroy) will be routed. You can write URLs that look like > they go to other actions (/users/some_other_thing) but they''ll actually be > routed to the show action. > > The Routing guide is a great reference for this stuff: > > http://guides.rubyonrails.org/routing.html > > --Matt Jones > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/xk3HMCLrR38J. > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.