Mercurial > hg > soundsoftware-site
comparison .svn/pristine/5d/5d49f8300d8c88036656ba3ee811b034c32e1e91.svn-base @ 1298:4f746d8966dd redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:28:30 +0100 |
parents | 622f24f53b42 |
children |
comparison
equal
deleted
inserted
replaced
1297:0a574315af3e | 1298:4f746d8966dd |
---|---|
1 module Redmine | |
2 module Scm | |
3 class Base | |
4 class << self | |
5 | |
6 def all | |
7 @scms || [] | |
8 end | |
9 | |
10 # Add a new SCM adapter and repository | |
11 def add(scm_name) | |
12 @scms ||= [] | |
13 @scms << scm_name | |
14 end | |
15 | |
16 # Remove a SCM adapter from Redmine's list of supported scms | |
17 def delete(scm_name) | |
18 @scms.delete(scm_name) | |
19 end | |
20 end | |
21 end | |
22 end | |
23 end |