31 lines
572 B
Ruby
31 lines
572 B
Ruby
class Commit
|
|
include ActiveModel::Conversion
|
|
include StaticModel
|
|
extend ActiveModel::Naming
|
|
|
|
# Safe amount of files with diffs in one commit to render
|
|
# Used to prevent 500 error on huge commits by suppressing diff
|
|
#
|
|
DIFF_SAFE_SIZE = 100
|
|
|
|
attr_accessor :raw
|
|
|
|
def self.decorate(commits)
|
|
commits.map { |c| Commit.new(c) }
|
|
end
|
|
|
|
def initialize(raw_commit)
|
|
raise "Nil as raw commit passed" unless raw_commit
|
|
|
|
@raw = raw_commit
|
|
end
|
|
|
|
def id
|
|
@raw.id
|
|
end
|
|
|
|
def method_missing(m, *args, &block)
|
|
@raw.send(m, *args, &block)
|
|
end
|
|
end
|