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

download.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 074e7204814049ec3c4c9592bbd7d7fc90f7efd8 (plain)
1
2
3
4
5
6
7
8
9
module BlobViewer
  class Download < Base
    include Simple
    include Static

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