hi I just download the goldberg generators. i want to know how to generate goldberg bcoz itz not a gem file itz a goldberg folder having some templates in it. plz explain step by step thx in advance regards narayana -- 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 -~----------~----~----~----~------~----~------~--~---
Hi Narayana, You can find detailed instructions here: http://goldberg.240gl.org/installation If you still have problems please leave a message on the Goldberg forums at RubyForge.org and I''ll get back to you as soon as possible. http://rubyforge.org/projects/goldberg Good luck! Regards, Urbanus --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Hi, I was a little bit confused with the installation as well. There was no .rails/generators folder in my home directory. Just create an empty folder, untar the goldberg tarball and run ruby script/generate goldberg in your rails-application directory. Regards Lars P.S.: This is indeed a very nice tool, I am planning to extend it for my next project rather than creating the login/admin stuff from scratch. Thanks for the good work! -- 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 -~----------~----~----~----~------~----~------~--~---
Hi Lars,> I was a little bit confused with the installation as well. There was no > .rails/generators folder in my home directory. Just create an empty > folder, untar the goldberg tarball and run ruby script/generate goldberg > in your rails-application directory.In due course I plan to make Goldberg available as a gem, which should make that part of the setup easier.> P.S.: This is indeed a very nice tool, I am planning to extend it for my > next project rather than creating the login/admin stuff from scratch. > Thanks for the good work!Thanks for the feedback. If you find ways in which Goldberg could be fixed or improved I''m open to suggestions. Code contributions are welcome too, if you make any hacks that are worth sharing. I''m currently working on the next release, which will feature a choice of site templates. Also I''ll be replacing the fixed menus on the top and side with Suckerfish menus. Regards, Urbanus --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
hello, any where else i may see samples of goldberg? it looks real promising. -- 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 -~----------~----~----~----~------~----~------~--~---
Hi Koloa, Check out the Goldberg web site -- it runs on Goldberg itself! http://goldberg.240gl.org Goldberg is designed to be quick to get up and running. So the best way to explore it is to set up your own local copy and give it a go. The Goldberg web site (above) has instructions. Regards, Urbanus --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
I have a product model and tag model that look like this: class Product < ActiveRecord::Base has_and_belongs_to_many :tags ..... class Tag < ActiveRecord::Base has_and_belongs_to_many :products ..... I have a page that shows the details of a product. At the bottom of this page, I would like to show a list of other products that share x number of tags with this product. How would I find these other products? Can the find method be used or will I have to resort to SQL? Thanks. Best Regards, Tamim --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Anyone? At this point I don''t even know how to approach this, so any help in pointing me in the right direction would be greatly appreciated. Thanks. Best Regards, Tamim Tamim Azizadah wrote:> I have a product model and tag model that look like this: > > class Product < ActiveRecord::Base > has_and_belongs_to_many :tags > ..... > > class Tag < ActiveRecord::Base > has_and_belongs_to_many :products > ..... > > > I have a page that shows the details of a product. At the bottom of this > page, I would like to show a list of other products that share x number > of tags with this product. How would I find these other products? Can > the find method be used or will I have to resort to SQL? Thanks. > > > Best Regards, > > Tamim > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---