all(*args)
public
A convenience wrapper for find(:all, *args).
You can pass in all the
same arguments to this method as you can to find(:all).
# File activerecord/lib/active_record/relation/finder_methods.rb, line 142
def all(*args)
args.any? ? apply_finder_options(args.first).to_a : to_a
end