require 'repertoire/media/type' module Repertoire module Media class CVS include Type known_as :cvs uses_schemes 'cvs' uses_directory 'CVS' # # Checks out the CVS repository located at the specified _uri_ into the # specified _path_. # def self.checkout(uri,path) sh('cvs','-d',path,'co',uri) end # # Updated the CVS repository located at the specified _path_. # def self.update(path,uri=nil) sh('cvs','up',path) end end end end