summaryrefslogtreecommitdiff
path: root/app/models/diff_viewer/not_diffable.rb
blob: dc86599e7221b7d16e1bd07788d4b3798bf5dc50 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module DiffViewer
  class NotDiffable < Base
    include Simple
    include Static

    self.partial_name = 'not_diffable'
    self.binary = true
  end
end