require 'rugged' require 'method_log/source_file' module MethodLog class Commit attr_reader :sha def initialize(repository: repository, sha: sha) @repository = repository @sha = sha @index = Rugged::Index.new end def add(source_file) oid = @repository.write(source_file.source, :blob) @index.add(path: source_file.path, oid: oid, mode: 0100644) end def apply tree = @index.write_tree(@repository) parents = @repository.empty? ? [] : [@repository.head.target].compact user = { email: 'test@example.com', name: 'test', time: Time.now } @sha = Rugged::Commit.create(@repository, tree: tree, parents: parents, update_ref: 'HEAD', author: user, committer: user, message: 'commit-message') end def source_files commit = @repository.lookup(sha) source_files = [] commit.tree.walk_blobs do |root, blob_hash| path = root.empty? ? blob_hash[:name] : File.join(root, blob_hash[:name]) source = @repository.lookup(blob_hash[:oid]).text source_files << SourceFile.new(path: path, source: source) end source_files end def ==(other) sha == other.sha end def hash sha.hash end def to_s sha end end end