- A
- C
- D
- F
- N
- P
- S
- T
- ActiveModel::Conversion
- StaticModel
DIFF_SAFE_SIZE | = | 100 |
Safe amount of files with diffs in one commit to render Used to prevent 500 error on huge commits by suppressing diff |
[RW] | commit | |
[RW] | head | |
[RW] | refs |
Source: show
# File app/models/commit.rb, line 62 def commits(repo, ref, path = nil, limit = nil, offset = nil) if path repo.log(ref, path, max_count: limit, skip: offset) elsif limit && offset repo.commits(ref, limit, offset) else repo.commits(ref) end.map{ |c| Commit.new(c) } end
Source: show
# File app/models/commit.rb, line 72 def commits_between(repo, from, to) repo.commits_between(from, to).map { |c| Commit.new(c) } end
Source: show
# File app/models/commit.rb, line 50 def commits_since(repo, date) commits = repo.heads.map do |h| repo.log(h.name, nil, since: date).each { |c| Commit.new(c, h) } end.flatten.uniq { |c| c.id } commits.sort! do |x, y| y.committed_date <=> x.committed_date end commits end
Source: show
# File app/models/commit.rb, line 40 def commits_with_refs(repo, n = 20) commits = repo.branches.map { |ref| Commit.new(ref.commit, ref) } commits.sort! do |x, y| y.committed_date <=> x.committed_date end commits[0..n] end
Source: show
# File app/models/commit.rb, line 76 def compare(project, from, to) result = { commits: [], diffs: [], commit: nil, same: false } return result unless from && to first = project.commit(to.try(:strip)) last = project.commit(from.try(:strip)) if first && last result[:same] = (first.id == last.id) result[:commits] = project.repo.commits_between(last.id, first.id).map {|c| Commit.new(c)} result[:diffs] = project.repo.diff(last.id, first.id) rescue [] result[:commit] = Commit.new(first) end result end
Source: show
# File app/models/commit.rb, line 18 def find_or_first(repo, commit_id = nil, root_ref) commit = if commit_id repo.commit(commit_id) else repo.commits(root_ref).first end Commit.new(commit) if commit end
Source: show
# File app/models/commit.rb, line 28 def fresh_commits(repo, n = 10) commits = repo.heads.map do |h| repo.commits(h.name, n).map { |c| Commit.new(c, h) } end.flatten.uniq { |c| c.id } commits.sort! do |x, y| y.committed_date <=> x.committed_date end commits[0...n] end
Source: show
# File app/models/commit.rb, line 100 def initialize(raw_commit, head = nil) @commit = raw_commit @head = head end
Source: show
# File app/models/commit.rb, line 134 def committer_email committer.email end
Source: show
# File app/models/commit.rb, line 130 def committer_name committer.name end
Source: show
# File app/models/commit.rb, line 113 def created_at committed_date end
Was this commit committed by a different person than the original author?
Source: show
# File app/models/commit.rb, line 126 def different_committer? author_name != committer_name || author_email != committer_email end
Source: show
# File app/models/commit.rb, line 146 def parents_count parents && parents.count || 0 end
Source: show
# File app/models/commit.rb, line 138 def prev_commit parents.try :first end
Source: show
# File app/models/commit.rb, line 142 def prev_commit_id prev_commit.try :id end
Source: show
# File app/models/commit.rb, line 109 def safe_message @safe_message ||= message end
Source: show
# File app/models/commit.rb, line 105 def short_id(length = 10) id.to_s[0..length] end
Shows the diff between the commit’s parent and the commit.
Cuts out the header and stats from to_patch and returns only the diff.
Source: show
# File app/models/commit.rb, line 153 def to_diff # see Grit::Commit#show patch = to_patch # discard lines before the diff lines = patch.split("\n") while !lines.first.start_with?("diff --git") do lines.shift end lines.pop if lines.last =~ %r^[\d.]+$/ # Git version lines.pop if lines.last == "-- " # end of diff lines.join("\n") end