11 lines
177 B
Ruby
11 lines
177 B
Ruby
|
module BlobViewer
|
||
|
class BinarySTL < Base
|
||
|
include Rich
|
||
|
include ClientSide
|
||
|
|
||
|
self.partial_name = 'stl'
|
||
|
self.extensions = %w(stl)
|
||
|
self.binary = true
|
||
|
end
|
||
|
end
|