Flowdock
method

to_ary

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::AssociationCollection
to_ary() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/association_collection.rb, line 84
      def to_ary
        load_target
        if @target.is_a?(Array)
          @target.to_ary
        else
          Array(@target)
        end
      end
Register or log in to add new notes.