User guitsaru - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:01:20Z http://stackoverflow.com/feeds/user/529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1202524/rails-nested-routing-to-html-id/1204292#1204292 0 Answer by guitsaru for Rails nested routing to html id guitsaru 2009-07-30T03:18:54Z 2009-07-30T03:18:54Z <p>The way I handled this was to generate the path to the comment show action which then redirected to the anchor via the method erik posted.</p> http://stackoverflow.com/questions/1165881/rails-development-and-cygwin-on-windows-xp/1166045#1166045 1 Answer by guitsaru for Rails Development and Cygwin on Windows XP guitsaru 2009-07-22T15:17:46Z 2009-07-22T15:17:46Z <p>The command should be:</p> <pre><code>ruby script/server </code></pre> <p>The leading '/' will look for the file in the root directory instead of your current directory.</p> http://stackoverflow.com/questions/116854/getting-started-with-rails-must-have-gems/116889#116889 8 Answer by guitsaru for Getting started with rails? Must have gems? guitsaru 2008-09-22T19:17:31Z 2008-09-22T19:23:24Z <p>The gems and plugins that I tend to use on most of my projects are:</p> <ul> <li><a href="http://github.com/technoweenie/restful-authentication/tree/master" rel="nofollow">Restful Authentication</a> -- For authentication</li> <li><a href="http://github.com/mislav/will_paginate/tree/master" rel="nofollow">Will Paginate</a> -- For pagination</li> <li><a href="https://github.com/technoweenie/attachment_fu/tree/master" rel="nofollow">Attachment Fu</a> -- For image and file attachments</li> <li><a href="http://redcloth.org/" rel="nofollow">RedCloth</a> -- For textile rendering</li> <li><a href="http://capify.org/" rel="nofollow">Capistrano</a> -- For deployment</li> </ul> http://stackoverflow.com/questions/10595/how-do-i-write-those-cool-command-line-code-generators-rails-sproutcore-webgen/11958#11958 4 Answer by guitsaru for How do I write those cool command line code generators (rails, sproutcore, webgen) guitsaru 2008-08-15T04:24:56Z 2008-08-15T04:40:41Z <p>Check out <a href="http://rubigen.rubyforge.org" rel="nofollow">rubigen</a>. You can also view a <a href="http://rubyconf2007.confreaks.com/d3t1p1_rubigen.html" rel="nofollow">presentation</a> by dr nic.</p> http://stackoverflow.com/questions/9051/what-is-best-blogging-host-for-programmers-code-formatting/9471#9471 0 Answer by guitsaru for What is best blogging host for programmers/code formatting? guitsaru 2008-08-13T04:20:08Z 2008-08-13T04:20:08Z <p>I use <a href="http://chyrp.net" rel="nofollow">Chyrp</a> because it's lightweight and easy to use. For code formatting you can use the <a href="http://chyrp.net/extend/view/63" rel="nofollow">Geshify</a> module or my own <a href="http://chyrp.net/extend/view/79" rel="nofollow">code feather</a>.</p> http://stackoverflow.com/questions/1176/open-source-ruby-projects/3531#3531 3 Answer by guitsaru for Open Source Ruby Projects guitsaru 2008-08-06T15:15:58Z 2008-08-06T15:15:58Z <p>Look around on <a href="http://github.com" rel="nofollow">github</a> for some open source projects. Some of the more popular projects are:</p> <ul> <li><a href="http://github.com/rails/rails/tree" rel="nofollow">Rails</a></li> <li><a href="http://github.com/wycats/merb-core/tree" rel="nofollow">Merb</a></li> <li><a href="http://github.com/evanphx/rubinius/tree" rel="nofollow">Rubinius</a></li> </ul> <p>Look on the <a href="http://github.com/popular/forked" rel="nofollow">Popular Forked</a> list and you'll probably see something that interests you.</p>