Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contributing.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 524104f176af58d00078082e5423867fefb94685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module BlobViewer
  class Contributing < Base
    include Auxiliary
    include Static

    self.partial_name = 'contributing'
    self.file_types = %i[contributing]
    self.binary = false
  end
end