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.
|
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. |
|||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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". |
|||||||
|
|
integer.ordinalize is one little method that I just stumbled upon not to long ago.
|
||||
|
|
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
|
||||
|
|
|
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,
|
||||
|
|
|
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:
|
|||||
|
|
If you have a model with some class methods and some named scopes:
Then you can call the class methods through the named scope:
|
||||
|
|
|
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:
|
|||||||
|
|
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.. |
|||||||||||
|
|
You can change the behaviour of a model for your test suite. Say you have some after_save method defined and you do not want it to happen in your unit tests. This is how it works:
|
||||
|
|
|
If you add routing for a resource:
And register additional mime-types:
You don't need a |
||||
|
|
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 |
||||
|
|
|
Funny feature is that array has special method for accessing its 42 element
http://railsapi.com/doc/rails-v2.3.8/classes/ActiveSupport/CoreExtensions/Array/Access.html#M003045 |
||||
|
|
|
The returning block is a great way to return values:
Will return a hash. You can substitute any other types as well. |
|||||||||
|
|
Get everything printed with rake routes programmatically:
|
||||
|
|