As a companion to Hidden features of Ruby.
Try to keep it to Rails since the other is a better place for Ruby-specific examples. One per post please.
|
6
|
As a companion to Hidden features of Ruby. Try to keep it to Rails since the other is a better place for Ruby-specific examples. One per post please.
|
|||
|
|
|
|
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:
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. |
||
|
|
|
|
Rails 2.3.x now allows you to do:
much simpler.. |
||||||||
|
|
|
integer.ordinalize is one little method that I just stumbled upon not to long ago.
|
||
|
|
|
|
If you add routing for a resource:
And register additional mime-types:
You don't need a |
||
|
|
|
|
If you have a model with some class methods and some named scopes:
Then you can call the class methods through the named scope:
|
||
|
|
|
|
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. For example, for a model that represents countries you'd define a constant that performs a
You can use this constant within a view template (perhaps within a select helper) by referring to
|
||
|
|
|
|
To see a list of gems that are installed, you can run:
Then point your browser at:
You get a nicely formatted list of your gems with links to rdoc, the web and any dependencies. Much nicer than:
|
||||
|
|
|
in your environment.rb, you can define new date/time formats e.g.
so then in your views you can use:
which will print like:
|
||
|
|
|
|
To avoid duplicate form submissions, Rails has a nice option for submit tags:
This adds behavior to the submit button to disable it once clicked, and to display "Saving..." instead of "Submit". |
||
|
|
|
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 |
||
|
|
|
|
I'm currently in love with
The above code renders this:
Want the CSS class to be
Want a span and not a div? No problem,
|
||
|
|
|
|
The returning block is a great way to return values:
Will return a hash. You can substitute any other types as well. |
||
|
|