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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2015-12-18 14:55:50 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-14 14:48:13 +0300
commit80a71576ba27d84b3406a8b929328359e2edc9da (patch)
tree0e16b58f207efd72c61864bc935fad9ad3dc7c59 /lib
parent73d2c7a553ca239cdce04af793992fd579ad3e4b (diff)
Use `Gitlab::StringPath` in CI build artifacts controller
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/string_path.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/gitlab/string_path.rb b/lib/gitlab/string_path.rb
index 9ccf54bd62f..3aa6200b572 100644
--- a/lib/gitlab/string_path.rb
+++ b/lib/gitlab/string_path.rb
@@ -34,6 +34,18 @@ module Gitlab
!directory?
end
+ def has_parent?
+ raise NotImplementedError
+ end
+
+ def parent
+ raise NotImplementedError
+ end
+
+ def directories
+ raise NotImplementedError
+ end
+
def files
raise NotImplementedError
end