project.rb 139 Bytes
class Project < KalibroClient::Processor::Project
  def self.latest(count = 1)
    all.sort { |a,b| b.id <=> a.id }.first(count)
  end
end