Notes posted to Ruby on Rails
RSS feed
Full List of Supported Formats
With a sample date of December 25th, 2008, at 14:35:05:
:db # => 2008-12-25 14:35:05 :number # => 20081225143505 :time # => 14:35 :short # => 25 Dec 14:35 :long # => December 25, 2008 14:35 :long_ordinal # => December 25th, 2008 14:35 :rfc822 # => Thu, 25 Dec 2008 14:35:05 +0000

Installation
Install the plugin by typing
script/plugin install auto_complete
Remember to restart webservice :)

Problematic :scroll option
If you use the :scroll => true option, note that at http://github.com/madrobby/scriptaculous/wikis/sortable-create it says:
“If you want your sortable list to be scrollable, wrap the list in a div and set the div to scrollable as apposed to making the ul element scrollable. Also, in IE you must set “position:relative” on the scrollable div.”

Application Helper for Fading Flash Messages
A simple helper method for showing the flash message. Includes optional fade in seconds (view needs javascript_include_tag defaults if you desire fade effect):
def show_flash_message(options={}) html = content_tag(:div, flash.collect{ |key,msg| content_tag(:div, msg, :class => key) }, :id => 'flash-message') if options.key?(:fade) html << content_tag(:script, "setTimeout(\"new Effect.Fade('flash-message');\",#{options[:fade]*1000})", :type => 'text/javascript') end html end
simply call in your views then using:
<%= show_flash_message(:fade => 4) %>



Another Example
Do not mistakenly pass class_name as a key/value pair (Hash form). You will get an error including the text ‘class or module needed’. It should look like this:
serialize :some_array, Array
Or, perhaps clearer would be:
serialize(:some_array, Array)
That may seem obvious, but it is common to be in the habit of passing things as a key/value pair.

Ajax form
<% form_remote_tag :url => { :action => “analyze”}, :update => “result” do %>
<%= select_tag 'company_id', options_for_select([]) %><br/> <%= text_area_tag :text, nil, { :cols => 100, :rows => 10 }%><br/> <%= submit_tag "Analyze", :disable_with => "Please wait..." %> <% end %> <div id="result"></div>

:use_route to force named routes in url_for
If you are using a plugin or library that calls url_for internally, you can force it to use a particular named route with the :use_route key. For instance, calling:
url_for(:controller => 'posts', :action => 'view', :id => post, :use_route => :special_post)
will have the same effect as:
special_post_url(post)
Naturally, this is much more verbose if you’re calling it directly, but can be a lifesaver if url_for is being called inside another method (e.g. will_paginate).

Re: Using a Loading Graphic
You probably want to be using :complete, not :loaded, to execute Javascript when an Ajax request has finished. See: http://prototypejs.org/api/ajax/options

Using your model's connection
It’s possible to execute raw SQL over the currently established connection for a model.
You may configure Rails to use different databases for different models. To make sure you are querying the correct database you may do the following:
MyModel.connection.execute("UPDATE `my_models` SET `beer`='free' WHERE 1")

Common options
“Common options” mentioned here is default PrototypeHelper options documented in link_to_remote
This means you can use :loading, :loaded, :failure, :success, etc in observe_field.

Parsing YAML from a POST request
When building a REST server which should accept YAML there are several things to take into consideration.
First of the client should tell the server what type of data it is going to send. This is done via the Content-Type header (which is NOT only a response header as opposed to what the RESTful Web Services book from O’Reilly made us believe).
Second the server application should know how handle the body of the POST request. Placing the following line in your environment.rb:
ActionController::Base.param_parsers[Mime::YAML] = :yaml
This registers the YAML parser. Smooth sailing from here on!

Add spacer template
<%= render :partial => “product”, :collection => @products, :spacer_template => “product_ruler” %>

current_url
exact url from browser window:
def current_url url_for :only_path=>false,:overwrite_params=>{} end

Compiling mysql gem in Leopard with MacPorts MySQL
Needs architecture and reference to mysql_config:
sudo env ARCHFLAGS="-arch i386" gem install mysql -- \ --with-mysql-config=/opt/local/lib/mysql5/bin/mysql_config

Rendering YAML
When you want to render XML or YAML you can use
render :xml, some_object.to_xml
or
render :json, some_object.to_json
However there is no equivalent for YAML. What you can do is render just plain text with a correct content-type:
render :text => some_object.to_yaml, :content_type => 'text/yaml'
The content_type is debatable but this seems to be the most standard.

re: james' note incorrect
kieran is correct, my note is incorrect, it was not meant for ActionMailer::Base

james' note incorrect
The render method in ActionMailer is infact a private method, in all versions (including the new Rails 2.2).
However, spectators note about @template works well. Thanks.

RERE: 1 render definition for many actions (cleaner)
@arronwashington. Ah, so that’s the motivation for using default_render, thanks for clearing that up, thanks :)

RE: 1 render definition for many actions (cleaner)
Hi James,
Unfortunately that doesn’t work if you use the
@zombies
variable in the rendered template, which is why default_render was added as a patch AFAIK. :)
before_filter is called too soon, after_filter is called after an attempt at rendering is made, so default_render is the only option for this as far as I know.

re: Specifying :include no longer necessarily joins the association
I have seen how :include does not nessisarily perform a join during that SQL query, if you need the join to occur then, rather then tricking AR (“forcing”), use :joins instead of :include to ensure the joins occur.

1 render definition for many actions (cleaner)
@arronwashington, you can just call render rather then using instance_eval to overwrite default_render, for example:
before_filter :render_filter, :only => [:zombies, :cool_zombies] def zombies @zombies = Zombie.find(:all) end def cool_zombies @zombies = Zombie.find(:all, :conditions => { :eats_humans => false, :is_hippie => true }) end protected def render_filter # without instance_eval or overwriting default_render render :template => 'zombies/all' end

1 render definition for many actions.
Overriding default_render in especially useful when you have many actions that all render the same thing.
before_filter :render_filter, :only => [:zombies, :cool_zombies] def zombies @zombies = Zombie.find(:all) end def cool_zombies @zombies = Zombie.find(:all, :conditions => { :eats_humans => false, :is_hippie => true }) end protected def render_filter instance_eval do def default_render render :template => 'zombies/all' end end end

params hash gets the model id automatically
The params hash gets automatically populated with the id of every model that gets passed to form_for. If we were creating a song inside an existing album:
URL:/albums/209/songs/new form_for [@album, @song] do |f| ... f.submit "Add" end
The params hash would be:
params = {"commit"=>"Add", "authenticity_token"=>"...", "album_id"=>"209", "song"=>{"song_attributes"=>{...}} }
So, in the songs_controller you could use this album_id in a before_filter:
before_filter :find_album protected def find_album @album = Album.find(params[:album_id]) end
If you only did this:
form_for @song do |f|
You would get this params hash:
params = {"commit"=>"Add", "authenticity_token"=>"...", "song"=>{"song_attributes"=>{...}} }

By images's sub dirctionary to img tag
image_tag(“icons/edit.png”) # =>
<img src="/images/icons/edit.png" alt="edit" />

re: Customizing attribute names in error messages
You can use Module.alias_attribute to achieve the same result as overriding human_attribute_name. After aliasing use the new name in the validates_xxxx_of methods or ActiveRecord::Errors.add.

Anyone know the order the scopes assemble conditions?
It seems like last scope = first condition in sql. Can anyone confirm?

can be useful to achieve attr_reader effect
e.g.
class Account < ActiveRecord::Base def credit(amount) self.write_attribute(:balance, self.balance + amount) self.save! end def balance=(value) raise "You can't set this attribute. It is private." end end
this allows fred.account.credit(5) whilst raising an error on fred.account.balance = 1000

Can be extended but only with a module
Although not documented, belongs_to does support Association Extensions however it doesn’t accept a block like has_many does. So you can’t do this:
class Account < ActiveRecord::Base belongs_to :person do def do_something_funky # Some exciting code end end end
but you can do this:
module FunkyExtension def do_something_funky # Some exciting code end end class Account < ActiveRecord::Base belongs_to :person, :extend => FunkyExtension end
And then call it like this:
@account = Account.first @account.person.do_something_funky