Flowdock
method

select

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: CollectionAssociation
select(select = nil) 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/collection_association.rb, line 72
      def select(select = nil)
        if block_given?
          load_target.select.each { |e| yield e }
        else
          scoped.select(select)
        end
      end
Register or log in to add new notes.