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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ruby/lib/gitlab/git/wiki_file.rb')
-rw-r--r--ruby/lib/gitlab/git/wiki_file.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby/lib/gitlab/git/wiki_file.rb b/ruby/lib/gitlab/git/wiki_file.rb
deleted file mode 100644
index 84335aca4..000000000
--- a/ruby/lib/gitlab/git/wiki_file.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-module Gitlab
- module Git
- class WikiFile
- attr_reader :mime_type, :raw_data, :name, :path
-
- # This class is meant to be serializable so that it can be constructed
- # by Gitaly and sent over the network to GitLab.
- #
- # Because Gollum::File is not serializable we must get all the data from
- # 'gollum_file' during initialization, and NOT store it in an instance
- # variable.
- def initialize(gollum_file)
- @mime_type = gollum_file.mime_type
- @raw_data = gollum_file.raw_data
- @name = gollum_file.name
- @path = gollum_file.path
- end
- end
- end
-end