So I’ve been following streamlined (http://streamlined.relevancellc.com/) and Ajax Scaffold for awhile and they look like great tools. However I’m looking for a tool that’s more like a scaffolding on steroids rather than an admin CRUD tool. What I’m looking for is a generator I can use to do rapid prototyping with a client (like scaffold) but that can at least handle 1-M stuff (has_many, belongs_to) etc. The resulting prototype ‘enhanced scaffold’ can then be used as a starting place for the real app, so it has to be extremely spartan (like current scaffold). Does anyone know of a tool like this out there? Cheers. -- 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 -~----------~----~----~----~------~----~------~--~---
On 8/24/06, inboulder <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> So I''ve been following streamlined > (http://streamlined.relevancellc.com/) and Ajax Scaffold for awhile and > they look like great tools. However I''m looking for a tool that''s more > like a scaffolding on steroids rather than an admin CRUD tool. > > What I''m looking for is a generator I can use to do rapid prototyping > with a client (like scaffold) but that can at least handle 1-M stuff > (has_many, belongs_to) etc. The resulting prototype ''enhanced scaffold'' > can then be used as a starting place for the real app, so it has to be > extremely spartan (like current scaffold). Does anyone know of a tool > like this out there? Cheers.Not sure if it will do everything you want, but you may want to look at the Scaffolding Extensions plugin [1]. [1] http://wiki.rubyonrails.com/rails/pages/Scaffolding+Extensions+Plugin --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Jeremy Evans wrote:> [1] > http://wiki.rubyonrails.com/rails/pages/Scaffolding+Extensions+PluginHi, I''ve taken a look at that b/f, but it appears to be a plugin and not a generator, so it''s not really a way of creating a bare bones app to build on top of. Am I correct in thinking this? -- 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 -~----------~----~----~----~------~----~------~--~---
On 8/24/06, inboulder <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > [1] > > http://wiki.rubyonrails.com/rails/pages/Scaffolding+Extensions+Plugin > > Hi, I''ve taken a look at that b/f, but it appears to be a plugin and not > a generator, so it''s not really a way of creating a bare bones app to > build on top of. Am I correct in thinking this?Yes. However, I recently commited some changes that allow you to generate controller code with it, and you''ve always been able to copy to scaffold views and modify them. Not a true generator, but one of the main advantages of the plugin is that it (is|should be) flexible enough that you don''t need to modify the output. The plugin handles belongs_to, has_many, and habtm associations, but it is more suited to do admin CRUD than to be a true scaffold (in spite of the name). That said, it includes features that make rich user accessible forms easy to build, if you don''t mind reading the RDoc or looking at the code. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---