Remove Radar until next release.

This commit is contained in:
Mitchell Hashimoto 2010-09-21 10:11:16 -06:00
parent f0294039e1
commit cb69377b06
4 changed files with 0 additions and 22 deletions

View File

@ -5,7 +5,6 @@ gem "vagrant", :path => '.'
# Use the following gems straight from git, since Vagrant dev
# typically coincides with it
gem "virtualbox", :git => "git://github.com/mitchellh/virtualbox.git"
gem "radar", :git => "git://github.com/mitchellh/radar.git"
# Gems required for testing only. To install run
# gem bundle test

View File

@ -1,11 +1,3 @@
GIT
remote: git://github.com/mitchellh/radar.git
revision: cec6c4bed8a26ca7512f32ddfdb2b25b3b710a8e
specs:
radar (0.4.0.dev)
builder (~> 2.0)
json (>= 1.4.6)
GIT
remote: git://github.com/mitchellh/virtualbox.git
revision: 1696cc62accd063a8e318950468191cd201c9965
@ -24,7 +16,6 @@ PATH
mario (~> 0.0.6)
net-scp (~> 1.0.3)
net-ssh (~> 2.0.23)
radar
thor (~> 0.14.1)
virtualbox (~> 0.7.3)
@ -33,7 +24,6 @@ GEM
specs:
abstract (1.0.0)
archive-tar-minitar (0.5.2)
builder (2.1.2)
columnize (0.3.1)
contest (0.1.2)
erubis (2.6.6)
@ -76,7 +66,6 @@ PLATFORMS
DEPENDENCIES
contest (>= 0.1.2)
mocha
radar!
rake
ruby-debug
ruby-debug19

View File

@ -2,7 +2,6 @@ require 'pathname'
require 'json'
require 'i18n'
require 'virtualbox'
require 'radar'
module Vagrant
# TODO: Move more classes over to the autoload model. We'll
@ -32,14 +31,6 @@ module Vagrant
end
end
# Setup Radar application for exception catching
Radar::Application.new(:vagrant) do |app|
app.reject :class, Vagrant::Errors::VagrantError
app.reject :class, SystemExit
app.reporters.use :file
app.rescue_at_exit!
end
# Default I18n to load the en locale
I18n.load_path << File.expand_path("templates/locales/en.yml", Vagrant.source_root)

View File

@ -21,7 +21,6 @@ Gem::Specification.new do |s|
s.add_dependency "net-scp", "~> 1.0.3"
s.add_dependency "i18n", "~> 0.4.1"
s.add_dependency "thor", "~> 0.14.1"
s.add_dependency "radar"
s.add_dependency "virtualbox", "~> 0.7.3"
s.add_development_dependency "rake"