By default, Google Analytics tracks the current URL for every request. Sometimes you will want to track another URL instead...

An association defined with has_many :through will return the same record multiple times if multiple join models for the...

You can change which branches will be pushed when saying git push. Our recommendation is to set it to current...

robots.thoughtbot.com

TL;DR {} binds stronger than do … end (as always in Ruby, special characters bind stronger than words) Demo

The following two hints are taken from Github's Ruby style guide: If your regular expression mentions a lot of...

makandra dev

When you are calling a method that may raise an exception that you don't care about, you might think...

If your project manager wants to do gatekeeping on a project, as a developer you need to follow the following...

When your model is using a callback like before_save or before_validation to calculate an aggregated value from its...

It might sound trivial, but there is no such thing as a "hover" or "mouseover" state on touch devices. If...

When selecting records in a date range, take care not to do it like this: start_date = Date.parse('2007-05...

Basically, you now need to know if your project uses a "real" time zone or :local, and if config.active_record.time_zone...

By default, Rails views escape HTML in any strings you insert. If you want to insert HTML verbatim, you need...

While it might seem trivial to implement an invoice that sums up items and shows net, gross and vat totals...

Detecting if a Javascript is running under Selenium WebDriver is super-painful. It's much easier to detect the current...

When your Cucumber feature needs to browse the page HTML, and you are not sure how to express your query...

makandra dev

When you need to create a locale for a language variant (like Austrian for German), you probably don't want...

When you generate a URL in a mailer view, ActionMailer will raise an error unless you previously configured it which...

Here are some popular mistakes when using nested forms: You are using fields_for instead of form.fields_for.

If you want to have an English Ubuntu UI, but still see dates, money amounts, paper formats, etc. in German...

Sass comes with many built-in functions to manipulate color. Some of the more interesting functions include: adjust-hue($color...

(Rails has a method ActiveRecord::Relation#merge that can merge ActiveRecord scopes. However, its behavior has never been clear, and...

We often have a separate production branch that lags a bit behind the more cutting edge main branch. Sometimes you...

Occasionally you need to do something directly on the server -- like having all records recalculate something that cannot be done...

When storing floating-point numbers such as prices or totals in an SQL database, always use a DECIMAL column. Never...