Hidden Features of Ruby on Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:50:27Z http://stackoverflow.com/feeds/question/709679 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails 6 Hidden Features of Ruby on Rails Brian 2009-04-02T13:21:15Z 2009-11-28T17:01:13Z <p>As a companion to <a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a>. </p> <p>Try to keep it to Rails since the other is a better place for Ruby-specific examples. One per post please.</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/709688#709688 2 Answer by Brian for Hidden Features of Ruby on Rails Brian 2009-04-02T13:24:08Z 2009-04-02T13:24:08Z <p>I'll start with one of my favorites. When calling a partial with a collection, instead of looping through your collection and calling it for each item, you can use this:</p> <pre><code>render :partial =&gt; 'items', :collection =&gt; @items </code></pre> <p>This will call the partial once per item, and pass a local variable item each time. You don't have to worry about nil checking @items either.</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/709749#709749 5 Answer by Ric8ard for Hidden Features of Ruby on Rails Ric8ard 2009-04-02T13:37:21Z 2009-04-30T09:04:27Z <p>Rails 2.3.x now allows you to do:</p> <pre><code>render @items </code></pre> <p>much simpler..</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/744281#744281 5 Answer by Dan Frade for Hidden Features of Ruby on Rails Dan Frade 2009-04-13T15:37:11Z 2009-04-13T15:37:11Z <p>integer.ordinalize is one little method that I just stumbled upon not to long ago.</p> <pre><code>1.ordinalize = "1st" 3.ordinalize = "3rd" </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/805729#805729 2 Answer by tomafro for Hidden Features of Ruby on Rails tomafro 2009-04-30T07:11:18Z 2009-04-30T07:11:18Z <p>If you add routing for a resource:</p> <pre><code>ActionController::Routing::Routes.draw do |map| map.resources :maps end </code></pre> <p>And register additional mime-types:</p> <pre><code>Mime::Type.register 'application/vnd.google-earth.kml+xml', :kml </code></pre> <p>You don't need a <code>respond_to</code> block in your controller to serve these additional types. Instead, just create views for the specific types, for example <code>'show.kml.builder'</code> or <code>'index.kml.erb'</code>. Rails will render these type-specific templates when requests for <code>'/maps.kml'</code> or <code>'/maps/1.kml'</code> are received, setting the response type appropriately.</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/805885#805885 6 Answer by tomafro for Hidden Features of Ruby on Rails tomafro 2009-04-30T08:13:05Z 2009-04-30T08:13:05Z <p>If you have a model with some class methods and some named scopes:</p> <pre><code>class Animal &lt; ActiveRecord::Base named_scope 'nocturnal', :conditions =&gt; {'nocturnal' =&gt; true} named_scope 'carnivorous', :conditions =&gt; {'vegetarian' =&gt; true} def self.feed_all_with(food) self.all.each do |animal| animal.feed_with(food) end end end </code></pre> <p>Then you can call the class methods through the named scope:</p> <pre><code>if night_time? Animal.nocturnal.carnivorous.feed_all_with(bacon) end </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/805977#805977 2 Answer by John Topley for Hidden Features of Ruby on Rails John Topley 2009-04-30T08:52:32Z 2009-04-30T08:52:32Z <p>You can take advantage of the fact that Ruby class definitions are active and that Rails caches classes in the production environment, to ensure that constant data is only fetched from the database when your application starts up.</p> <p>For example, for a model that represents countries you'd define a constant that performs a <code>Country.all</code> query when the class is loaded:</p> <pre><code>class Country &lt; ActiveRecord::Base COUNTRIES = self.all . . . end </code></pre> <p>You can use this constant within a view template (perhaps within a select helper) by referring to <code>Country::COUNTRIES</code>. For example:</p> <pre><code>&lt;%= select_tag(:country, options_for_select(Country::COUNTRIES)) %&gt; </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/888704#888704 6 Answer by Brian for Hidden Features of Ruby on Rails Brian 2009-05-20T15:40:53Z 2009-05-20T15:40:53Z <p>To see a list of gems that are installed, you can run:</p> <pre><code>gem server </code></pre> <p>Then point your browser at:</p> <pre><code>http://localhost:8808 </code></pre> <p>You get a nicely formatted list of your gems with links to rdoc, the web and any dependencies. Much nicer than:</p> <pre><code>gem list </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1025245#1025245 2 Answer by jemminger for Hidden Features of Ruby on Rails jemminger 2009-06-22T01:54:26Z 2009-06-22T01:54:26Z <p>in your environment.rb, you can define new date/time formats e.g.</p> <pre><code>[Time::DATE_FORMATS, Date::DATE_FORMATS].each do |obj| obj[:dots] = "%m.%d.%y" end </code></pre> <p>so then in your views you can use:</p> <pre><code>Created: &lt;%= @my_object.created_at.to_s(:dots) %&gt; </code></pre> <p>which will print like:</p> <pre><code>Created: 06.21.09 </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1061759#1061759 6 Answer by Jo Hund for Hidden Features of Ruby on Rails Jo Hund 2009-06-30T04:38:43Z 2009-06-30T04:38:43Z <p>To avoid duplicate form submissions, Rails has a nice option for submit tags:</p> <pre><code>submit_tag "Submit", :disable_with =&gt; "Saving..." </code></pre> <p>This adds behavior to the submit button to disable it once clicked, and to display "Saving..." instead of "Submit".</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1061846#1061846 1 Answer by August Lilleaas for Hidden Features of Ruby on Rails August Lilleaas 2009-06-30T05:13:28Z 2009-06-30T05:13:28Z <pre><code>ActionView::Base.default_form_builder = MyFormBuilderClass </code></pre> <p>Very useful when you're creating your own form builders. A much better alternative to manually passing :builder, either in your views or in your own <code>custom_form_for</code> helper.</p> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1235635#1235635 2 Answer by Matt Grande for Hidden Features of Ruby on Rails Matt Grande 2009-08-05T20:43:49Z 2009-08-05T20:43:49Z <p>I'm currently in love with <code>div_for</code> and <code>content_tag_for</code></p> <pre><code>&lt;% div_for(@comment) do %&gt; &lt;!-- code to display your comment --&gt; &lt;% end %&gt; </code></pre> <p>The above code renders this:</p> <pre><code>&lt;div id="comment_123" class="comment"&gt; &lt;!-- code to display your comment --&gt; &lt;/div&gt; </code></pre> <p>Want the CSS class to be <code>comment other_class</code>? No problem:</p> <pre><code>&lt;% div_for(@comment, :class =&gt; 'other_class') do %&gt; &lt;!-- code to display your comment --&gt; &lt;% end %&gt; </code></pre> <p>Want a span and not a div? No problem, <code>content_tag_for</code> to the rescue!</p> <pre><code>&lt;% content_tag_for(:span, @comment) %&gt; &lt;% end %&gt; # Becomes... &lt;span id="comment_123" class="comment"&gt; &lt;!-- code to display your comment --&gt; &lt;/span&gt; </code></pre> <p><code>content_tag_for</code> is also great if you want to prefix you <code>id</code>. I use it for loading gifs.</p> <pre><code>&lt;% content_tag_for(:span, @comment, 'loading') %&gt; &lt;%= image_tag 'loading.gif' -%&gt; &lt;% end %&gt; # Becomes... &lt;span id="loading_comment_123" class="comment"&gt; &lt;img src="loading.gif" /&gt; &lt;/span&gt; </code></pre> http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1813052#1813052 0 Answer by Brian for Hidden Features of Ruby on Rails Brian 2009-11-28T17:01:13Z 2009-11-28T17:01:13Z <p>The returning block is a great way to return values:</p> <pre><code>def returns_a_hash(id) returning Hash.new do |result| result["id"] = id end end </code></pre> <p>Will return a hash. You can substitute any other types as well.</p>