Reorder methods in Gitlab::Satellite
This commit is contained in:
parent
8778961d33
commit
35b7a53955
1 changed files with 13 additions and 14 deletions
|
@ -5,20 +5,8 @@ module Gitlab
|
||||||
|
|
||||||
attr_accessor :project
|
attr_accessor :project
|
||||||
|
|
||||||
def initialize project
|
def initialize(project)
|
||||||
self.project = project
|
@project = project
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
`git clone #{project.url_to_repo} #{path}`
|
|
||||||
end
|
|
||||||
|
|
||||||
def path
|
|
||||||
Rails.root.join("tmp", "repo_satellites", project.path)
|
|
||||||
end
|
|
||||||
|
|
||||||
def exists?
|
|
||||||
File.exists? path
|
|
||||||
end
|
end
|
||||||
|
|
||||||
#will be deleted all branches except PARKING_BRANCH
|
#will be deleted all branches except PARKING_BRANCH
|
||||||
|
@ -37,5 +25,16 @@ module Gitlab
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
`git clone #{project.url_to_repo} #{path}`
|
||||||
|
end
|
||||||
|
|
||||||
|
def exists?
|
||||||
|
File.exists? path
|
||||||
|
end
|
||||||
|
|
||||||
|
def path
|
||||||
|
Rails.root.join("tmp", "repo_satellites", project.path)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue