Sha256: 636baaaee623356aef5c3719ae93fde2816e1302da79fd1d0055fa56c28579b8
Contents?: true
Size: 245 Bytes
Versions: 48
Compression:
Stored size: 245 Bytes
Contents
# frozen_string_literal: true class Project < ActiveRecord::Base has_and_belongs_to_many :developers, -> { uniq } def self.collection_cache_key(collection = all, timestamp_column = :updated_at) "projects-#{collection.count}" end end
Version data entries
48 entries across 48 versions & 2 rubygems