2010-02-17 01:41:59 +03:00
|
|
|
module Redmine
|
|
|
|
module Scm
|
|
|
|
class Base
|
|
|
|
class << self
|
|
|
|
|
|
|
|
def all
|
2012-12-06 02:00:02 +04:00
|
|
|
@scms || []
|
2010-02-17 01:41:59 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
# Add a new SCM adapter and repository
|
|
|
|
def add(scm_name)
|
|
|
|
@scms ||= []
|
|
|
|
@scms << scm_name
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove a SCM adapter from Redmine's list of supported scms
|
|
|
|
def delete(scm_name)
|
|
|
|
@scms.delete(scm_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|