gitlab-org--gitlab-foss/lib/gitlab/import_export.rb

28 lines
438 B
Ruby
Raw Normal View History

module Gitlab
2016-03-07 17:26:15 +00:00
module ImportExport
extend self
2016-05-16 10:04:31 +00:00
VERSION = '0.1.0'
def export_path(relative_path:)
2016-04-22 10:18:11 +00:00
File.join(storage_path, relative_path)
2016-03-07 17:26:15 +00:00
end
def storage_path
File.join(Settings.shared['path'], 'tmp/project_exports')
end
2016-05-13 15:39:03 +00:00
def project_filename
"project.json"
end
def project_bundle_filename
"project.bundle"
end
2016-05-16 10:04:31 +00:00
def version_filename
'VERSION'
end
2016-03-07 17:26:15 +00:00
end
end