ActiveRecord None Mar 4th, 2016 7:15 pm | Comments The .none class method was introduced in Rails 4.0.2 and is helpful when returning a blank array will break. 1 2 3 4 5 Organization.none.paginate(page: '1') => #<ActiveRecord::Relation []> [].paginate(page: '1') => NoMethodError: undefined method `paginate' for []:Array Helpful Links none