User guitsaru - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T21:01:20Zhttp://stackoverflow.com/feeds/user/529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1202524/rails-nested-routing-to-html-id/1204292#12042920Answer by guitsaru for Rails nested routing to html idguitsaru2009-07-30T03:18:54Z2009-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#11660451Answer by guitsaru for Rails Development and Cygwin on Windows XPguitsaru2009-07-22T15:17:46Z2009-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#1168898Answer by guitsaru for Getting started with rails? Must have gems?guitsaru2008-09-22T19:17:31Z2008-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#119584Answer by guitsaru for How do I write those cool command line code generators (rails, sproutcore, webgen)guitsaru2008-08-15T04:24:56Z2008-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#94710Answer by guitsaru for What is best blogging host for programmers/code formatting? guitsaru2008-08-13T04:20:08Z2008-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#35313Answer by guitsaru for Open Source Ruby Projectsguitsaru2008-08-06T15:15:58Z2008-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>