scm: move ScmCommandAborted class from git and cvs adapter to abstract adapter.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5901 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e9deec685d
commit
d57910c39e
|
@ -24,6 +24,10 @@ module Redmine
|
||||||
end
|
end
|
||||||
|
|
||||||
class AbstractAdapter #:nodoc:
|
class AbstractAdapter #:nodoc:
|
||||||
|
|
||||||
|
# raised if scm command exited with error, e.g. unknown revision.
|
||||||
|
class ScmCommandAborted < CommandFailed; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def client_command
|
def client_command
|
||||||
""
|
""
|
||||||
|
|
|
@ -25,9 +25,6 @@ module Redmine
|
||||||
# CVS executable name
|
# CVS executable name
|
||||||
CVS_BIN = Redmine::Configuration['scm_cvs_command'] || "cvs"
|
CVS_BIN = Redmine::Configuration['scm_cvs_command'] || "cvs"
|
||||||
|
|
||||||
# raised if scm command exited with error, e.g. unknown revision.
|
|
||||||
class ScmCommandAborted < CommandFailed; end
|
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def client_command
|
def client_command
|
||||||
@@bin ||= CVS_BIN
|
@@bin ||= CVS_BIN
|
||||||
|
|
|
@ -25,9 +25,6 @@ module Redmine
|
||||||
# Git executable name
|
# Git executable name
|
||||||
GIT_BIN = Redmine::Configuration['scm_git_command'] || "git"
|
GIT_BIN = Redmine::Configuration['scm_git_command'] || "git"
|
||||||
|
|
||||||
# raised if scm command exited with error, e.g. unknown revision.
|
|
||||||
class ScmCommandAborted < CommandFailed; end
|
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def client_command
|
def client_command
|
||||||
@@bin ||= GIT_BIN
|
@@bin ||= GIT_BIN
|
||||||
|
|
Loading…
Reference in New Issue