Hi all I am looking for tutorials that explain how to develop a whole application in RoR. I have found only two by the moment: - Tutorial on developing a Facebook application using Ruby on Rails - Rolling with Ruby on Rails Any other suggestions? Thanks jose -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Jose Pepe wrote:> I am looking for tutorials that explain how to develop a whole > application in RoR. I have found only two by the moment: > > - Tutorial on developing a Facebook application using Ruby on Rails > > - Rolling with Ruby on Rails > > Any other suggestions?We will feel very sad if you don''t read /Agile Web Development with Rails/, by the Daves, before posting here again. -- Phlip --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
>> Jose Pepe wrote: >> >> I am looking for tutorials that explain how to develop a whole >> application in RoR. I have found only two by the moment:Phlip wrote:> > We will feel very sad if you don''t read /Agile Web Development with > Rails/, by the Daves, before posting here again. >Bearing in mind that the whole scaffolding part does not work as described since Rails 2.0. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks for your advice Phlip and James -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I would strongly suggest that you first go to http://api.rubyonrails.org/ and read the APIs for at least these classes and modules: ActiveRecord::Migration ActiveRecord::Base ActiveRecord::Validations ActionView::Base ActionView::Partials ActionController::Base ActiveResource::Base ActionController::Routing And as many of the ActionView::Helpers APIs as you can stand. If you are anything like me then the APIs will seem almost incomprehensible to begin with, but having read them will help you follow tutorials so much better. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Jose, all: We are working on just such a beast (a full application, free, tutorial) at http://www.buildingwebapps.com/learningrails. Our audio- only podcast covers the high-level concepts (over 8 episodes), and we are now switching to a screencast that will walk through iterating on a full Rails 2.0.2 (or newer) application. BTW: this is the same podcast found at our LearningRails.com site or iTunes, if you''ve already listened to the audio portion you can jump in starting with the screencasts. There are a variety of show notes and the upcoming screencasts will have code posted. We are aiming at beginners. We hope to have the first screencast posted soon. You can subscribe to notifications at the site. -Christopher Haupt On Apr 6, 1:01 pm, James Byrne <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> I would strongly suggest that you first go tohttp://api.rubyonrails.org/ > and read the APIs for at least these classes and modules: > > ActiveRecord::Migration > ActiveRecord::Base > ActiveRecord::Validations > > ActionView::Base > ActionView::Partials > > ActionController::Base > ActiveResource::Base > ActionController::Routing > > And as many of the ActionView::Helpers APIs as you can stand. > > If you are anything like me then the APIs will seem almost > incomprehensible to begin with, but having read them will help you > follow tutorials so much better. > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Excellent!! Chris Haupt wrote:> Hi Jose, all: > > We are working on just such a beast (a full application, free, > tutorial) at http://www.buildingwebapps.com/learningrails. Our audio- > only podcast covers the high-level concepts (over 8 episodes), and we > are now switching to a screencast that will walk through iterating on > a full Rails 2.0.2 (or newer) application. BTW: this is the same > podcast found at our LearningRails.com site or iTunes, if you''ve > already listened to the audio portion you can jump in starting with > the screencasts. > > There are a variety of show notes and the upcoming screencasts will > have code posted. We are aiming at beginners. > > We hope to have the first screencast posted soon. You can subscribe to > notifications at the site. > > -Christopher Haupt > > On Apr 6, 1:01�pm, James Byrne <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---