You can use record.send(:update_without_callbacks) or record.send(:create_without_callbacks) This can be used as a...

For some reason you want to define a find condition in array form. And in that condition both column name...

Find conditions for scopes can be given either as an array (:conditions => ['state = ?', 'draft']) or a hash (:conditions => { 'state' => 'draft...

When using virtual attributes, the attached trait can be useful to automatically copy errors from one attribute to another.

When Paperclip attachments should only be downloadable for selected users, there are three ways to go. The same applies to...

In modern Rails versions you can also use ActiveRecord's pluck method. User.active.pluck(:id) => [1, 5, 23, 42]

You should test the callback methods and its correct invocation in two separate tests. Understand the ActiveRecord note before you...

When you load a record with find options that have SQL fragments in :select or :joins, ActiveRecord will make that...

Sometimes you want to fetch associations for an ActiveRecord that you already loaded, e.g. when it has deeply nested associations...

When working with times and dates in Rails applications, you need to deal with the following problem: In Rails, Time...

github.com

jamesgolick / resource_controller at Github module ResourceController module Actions def index load_collection before :index response_for :index end

makandra dev
ruportbook.com

Ruport’s acts_as_reportable module provides support for using ActiveRecord for data collection. You can use it to get...

This method is defined automatically and only given for boolean attributes create_table "users", :force => true do |t| t.boolean "email...

github.com

Ancestry is a gem/plugin that allows the records of a Ruby on Rails ActiveRecord model to be organised as a...

makandra dev

To test concurrent code, you will need to run multiple threads. Unfortunately, when you use blocking system calls (e.g. locks...

makandra dev

Install gem and plugin sudo gem install parallel script/plugin install git://github.com/grosser/parallel_tests.git Adapt config/database.yml test: database: xxx_test<%= ENV...

github.com

before transition before validation after validation before save after save after transition Aborting the callback chain See Cancel the ActiveRecord...

makandra dev
thoughtbot.com

Squirrel is an enhancement for ActiveRecord’s find method that allows programmers to query the database using a more Rubyish...

magicscalingsprinkles.wordpress.com

Cache Money is a plugin for ActiveRecord that transparently provides write-through and read-through caching functionality using Memcached. With...

socghop.appspot.com

Finish the remainder of the ActiveModel todo list (observers, callbacks, validations, scoping, and serialization) in addition to associations. Also wire...

aub.github.com

Record Filter gives you the full power of ActiveRecord's query building tools with a heaping helping of DSL thrown...

github.com

Capistrano recipes for database backups before migrations, passenger deployment strategy, release tagging in Git repos.

igvita.com

The idea behind scrooge is both surprisingly simple and powerful: instead of forcing the developer to manually specify each attribute...

github.com

A rails plugin to store a collection of boolean attributes in a single ActiveRecord column as a bit field.