hai friends i am fresher in rails and i want to know can i write application i ruby without scaffoldining plz post some links or any applications without using scffolding........ -- 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 this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Marnen Laibow-Koser
2009-Dec-30 12:28 UTC
Re: can i write programs in rails without scaffolding
basil wrote:> hai friends > i am fresher in rails and i want to know can i write > application i ruby without scaffoldiningIn Ruby or in Rails? (In either case, the answer is yes.)> plz post some links or any applications without using > scffolding........http://guides.rails.info> > -- > > 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 this group at > http://groups.google.com/group/rubyonrails-talk?hl=en.Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@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-/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 this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
2009/12/30 basil <basil.k.kurian777-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:> hai friends > i am fresher in rails and i want to know can i write > application i ruby without scaffoldining > plz post some links or any applications without using > scffolding........Yes, of course. Scaffolding is just a tool to get something up and running quickly. To build an app without using scaffolding I would suggest building one using it first, have a look at the code to get a good idea of how it works, then, if you really want to, start again and develop your app without using the scaffold. Colin -- 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. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I.E. you can retrieve the structure of a table or view in your DB using ruby script/generate model <model> --skip-migration and then create the related controller ruby script/generate controller <modelS> On Dec 30, 3:13 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> 2009/12/30 basil <basil.k.kurian...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>: > > > hai friends > > i am fresher in rails and i want to know can i write > > application i ruby without scaffoldining > > plz post some links or any applications without using > > scffolding........ > > Yes, of course. Scaffolding is just a tool to get something up and > running quickly. To build an app without using scaffolding I would > suggest building one using it first, have a look at the code to get a > good idea of how it works, then, if you really want to, start again > and develop your app without using the scaffold. > > Colin-- 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. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Marnen Laibow-Koser
2009-Dec-30 16:21 UTC
Re: can i write programs in rails without scaffolding
Ro wrote:> I.E. you can retrieve the structure of a table or view in your DB > using > > ruby script/generate model <model> --skip-migrationWhy would you skip the migration?> > and then create the related controller > > ruby script/generate controller <modelS>Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@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-/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 this group at http://groups.google.com/group/rubyonrails-talk?hl=en.