project.rb 139 Bytes Edit Raw Blame History 1 2 3 4 5 class Project < KalibroClient::Processor::Project def self.latest(count = 1) all.sort { |a,b| b.id <=> a.id }.first(count) end end