Can i write programs in rails without scaffolding

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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.

basil wrote:

hai friends
i am fresher in rails and i want to know can i write
application i ruby without scaffoldining

In Ruby or in Rails? (In either case, the answer is yes.)

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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.

Best,

Marnen Laibow-Koser
http://www.marnen.org
[email protected]

2009/12/30 basil [email protected]:

 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 [email protected].
To unsubscribe from this group, send email to
[email protected].
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 --skip-migration

and then create the related controller

ruby script/generate controller

On Dec 30, 3:13 pm, Colin L. [email protected] wrote:

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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.

Ro wrote:

I.E. you can retrieve the structure of a table or view in your DB
using

ruby script/generate model --skip-migration

Why would you skip the migration?

and then create the related controller

ruby script/generate controller

Best,

Marnen Laibow-Koser
http://www.marnen.org
[email protected]