Hidden Features of Ruby on Rails - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:50:27Zhttp://stackoverflow.com/feeds/question/709679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails6Hidden Features of Ruby on RailsBrian2009-04-02T13:21:15Z2009-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#7096882Answer by Brian for Hidden Features of Ruby on RailsBrian2009-04-02T13:24:08Z2009-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 => 'items', :collection => @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#7097495Answer by Ric8ard for Hidden Features of Ruby on RailsRic8ard2009-04-02T13:37:21Z2009-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#7442815Answer by Dan Frade for Hidden Features of Ruby on RailsDan Frade2009-04-13T15:37:11Z2009-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#8057292Answer by tomafro for Hidden Features of Ruby on Railstomafro2009-04-30T07:11:18Z2009-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#8058856Answer by tomafro for Hidden Features of Ruby on Railstomafro2009-04-30T08:13:05Z2009-04-30T08:13:05Z<p>If you have a model with some class methods and some named scopes:</p>
<pre><code>class Animal < ActiveRecord::Base
named_scope 'nocturnal', :conditions => {'nocturnal' => true}
named_scope 'carnivorous', :conditions => {'vegetarian' => 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#8059772Answer by John Topley for Hidden Features of Ruby on RailsJohn Topley2009-04-30T08:52:32Z2009-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 < 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><%= select_tag(:country, options_for_select(Country::COUNTRIES)) %>
</code></pre>
http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/888704#8887046Answer by Brian for Hidden Features of Ruby on RailsBrian2009-05-20T15:40:53Z2009-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#10252452Answer by jemminger for Hidden Features of Ruby on Railsjemminger2009-06-22T01:54:26Z2009-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: <%= @my_object.created_at.to_s(:dots) %>
</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#10617596Answer by Jo Hund for Hidden Features of Ruby on RailsJo Hund2009-06-30T04:38:43Z2009-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 => "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#10618461Answer by August Lilleaas for Hidden Features of Ruby on RailsAugust Lilleaas2009-06-30T05:13:28Z2009-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#12356352Answer by Matt Grande for Hidden Features of Ruby on RailsMatt Grande2009-08-05T20:43:49Z2009-08-05T20:43:49Z<p>I'm currently in love with <code>div_for</code> and <code>content_tag_for</code></p>
<pre><code><% div_for(@comment) do %>
<!-- code to display your comment -->
<% end %>
</code></pre>
<p>The above code renders this:</p>
<pre><code><div id="comment_123" class="comment">
<!-- code to display your comment -->
</div>
</code></pre>
<p>Want the CSS class to be <code>comment other_class</code>? No problem:</p>
<pre><code><% div_for(@comment, :class => 'other_class') do %>
<!-- code to display your comment -->
<% end %>
</code></pre>
<p>Want a span and not a div? No problem, <code>content_tag_for</code> to the rescue!</p>
<pre><code><% content_tag_for(:span, @comment) %>
<% end %>
# Becomes...
<span id="comment_123" class="comment">
<!-- code to display your comment -->
</span>
</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><% content_tag_for(:span, @comment, 'loading') %>
<%= image_tag 'loading.gif' -%>
<% end %>
# Becomes...
<span id="loading_comment_123" class="comment">
<img src="loading.gif" />
</span>
</code></pre>
http://stackoverflow.com/questions/709679/hidden-features-of-ruby-on-rails/1813052#18130520Answer by Brian for Hidden Features of Ruby on RailsBrian2009-11-28T17:01:13Z2009-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>