summaryrefslogtreecommitdiff
path: root/app/models/blob.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blob.rb')
-rw-r--r--app/models/blob.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/models/blob.rb b/app/models/blob.rb
index cc7758d9674..a12d856dc36 100644
--- a/app/models/blob.rb
+++ b/app/models/blob.rb
@@ -8,6 +8,7 @@ class Blob < SimpleDelegator
include BlobActiveModel
MODE_SYMLINK = '120000' # The STRING 120000 is the git-reported octal filemode for a symlink
+ MODE_EXECUTABLE = '100755' # The STRING 100755 is the git-reported octal filemode for an executable file
CACHE_TIME = 60 # Cache raw blobs referred to by a (mutable) ref for 1 minute
CACHE_TIME_IMMUTABLE = 3600 # Cache blobs referred to by an immutable reference for 1 hour
@@ -35,7 +36,6 @@ class Blob < SimpleDelegator
BlobViewer::Image,
BlobViewer::Sketch,
- BlobViewer::Balsamiq,
BlobViewer::Video,
BlobViewer::Audio,
@@ -182,6 +182,10 @@ class Blob < SimpleDelegator
mode == MODE_SYMLINK
end
+ def executable?
+ mode == MODE_EXECUTABLE
+ end
+
def extension
@extension ||= extname.downcase.delete('.')
end