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

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

module BlobViewer
  class BinarySTL < Base
    include Rich
    include ClientSide

    self.partial_name = 'stl'
    self.extensions = %w[stl]
    self.binary = true
  end
end