debian-mirror-gitlab/lib/backup/builds.rb

14 lines
232 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-11-26 14:37:03 +05:30
module Backup
2021-01-03 14:25:43 +05:30
class Builds < Backup::Files
2018-11-08 19:23:39 +05:30
attr_reader :progress
def initialize(progress)
@progress = progress
2015-11-26 14:37:03 +05:30
super('builds', Settings.gitlab_ci.builds_path)
2015-09-25 12:07:36 +05:30
end
end
end