aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r--lib/bundler.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index 40cd8aad..2b2c9d75 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -61,7 +61,6 @@ module Bundler
class InstallHookError < BundlerError; status_code(8) ; end
class PathError < BundlerError; status_code(13) ; end
class GitError < BundlerError; status_code(11) ; end
- class SVNError < BundlerError; status_code(23) ; end
class DeprecatedError < BundlerError; status_code(12) ; end
class GemspecError < BundlerError; status_code(14) ; end
class InvalidOption < BundlerError; status_code(15) ; end
@@ -382,11 +381,6 @@ module Bundler
@git_present = Bundler.which("git") || Bundler.which("git.exe")
end
- def svn_present?
- return @svn_present if defined?(@svn_present)
- @svn_present = Bundler.which("svn") || Bundler.which("svn.exe")
- end
-
def ruby_version
@ruby_version ||= SystemRubyVersion.new
end