lib/bundler.rb in bundler-1.3.0.pre.2 vs lib/bundler.rb in bundler-1.3.0.pre.3
- old
+ new
@@ -53,15 +53,13 @@
class InstallHookError < BundlerError; status_code(6) ; end
class PathError < BundlerError; status_code(13) ; end
class GitError < BundlerError; status_code(11) ; end
class DeprecatedError < BundlerError; status_code(12) ; end
class GemspecError < BundlerError; status_code(14) ; end
- class DslError < BundlerError; status_code(15) ; end
+ class InvalidOption < BundlerError; status_code(15) ; end
class ProductionError < BundlerError; status_code(16) ; end
- class InvalidOption < DslError ; end
class HTTPError < BundlerError; status_code(17) ; end
class RubyVersionMismatch < BundlerError; status_code(18) ; end
-
WINDOWS = RbConfig::CONFIG["host_os"] =~ %r!(msdos|mswin|djgpp|mingw)!
FREEBSD = RbConfig::CONFIG["host_os"] =~ /bsd/
NULL = WINDOWS ? "NUL" : "/dev/null"