Sha256: e7f0cd0f78c2e3a4f5db257cf5e61ba058aab9f73e8b2ff708207fb90dade329
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
module Git # object that holds the last X commits on given branch class Log include Enumerable @base = nil @commits = nil @object = nil @path = nil @count = nil @since = nil @between = nil @dirty_flag = nil def initialize(base, count = 30) dirty_log @base = base @count = count end def object(objectish) dirty_log @object = objectish return self end def path(path) dirty_log @path = path return self end def since(date) dirty_log @since = date return self end def between(sha1, sha2 = nil) dirty_log @between = [sha1, sha2] return self end def to_s self.map { |c| c.to_s }.join("\n") end # forces git log to run def size check_log @commits.size rescue nil end def each check_log @commits.each do |c| yield c end end def first check_log @commits.first rescue nil end private def dirty_log @dirty_flag = true end def check_log if @dirty_flag run_log @dirty_flag = false end end # actually run the 'git log' command def run_log log = @base.lib.full_log_commits(:count => @count, :object => @object, :path_limiter => @path, :since => @since, :between => @between) @commits = log.map { |c| Git::Object::Commit.new(@base, c['sha'], c) } end end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
schacon-git-1.0.6 | lib/git/log.rb |
git-1.0.4 | lib/git/log.rb |
git-1.0.5 | lib/git/log.rb |