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...
(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...
Within an event handler, there are multiple methods to cancel event propagation, each with different semantics. event.preventDefault() Only prevents the...
When you need to insert many records into the same table, performance may become an issue. What you can do...
So you are comparing two Time objects in an RSpec example, and they are not equal, although they look equal...
There are two ways to define a class method from a Modularity trait. Note that the usual caveats regarding class...
A check if two date or time ranges A and B overlap needs to cover a lot of cases:
When defining a trait using the Modularity gem, you must take extra steps to define constants to avoid caveats (like...
You cannot use Array#join on an array of strings where some strings are html_safe and others are not...
When you eagerly load an association list using the .include option, and at the same time have a .where on...
When using virtual attributes, the attached trait can be useful to automatically copy errors from one attribute to another.
There are two distinct ways of commenting Haml markup: HTML and Ruby. HTML comments This will create an HTML comment...
Rails 3, 4, 5, 6 config/application.rb config/environment.rb before the initialize! call (we don't usually edit this file)
Sometimes you want to fetch associations for an ActiveRecord that you already loaded, e.g. when it has deeply nested associations...
The Git stash does not work like a one-slot clipboard and you might shoot yourself in the foot if...
Best results in other decks
Du hast ein wichtiges Anliegen, das nicht ins Monthly passt und in der GL-Runde besprochen werden sollte?
Prevent the restart of daemons from Debian package upgrades. Proper written postinstall scripts for Debian packages utilize deb-systemd-invoke...