From 46b113dcdb85da10ba0f3d42c9cb48f2ee392a95 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 21 Apr 2010 17:04:22 -0700 Subject: [PATCH] Trivial change. --- lib/vagrant/commands/init.rb | 2 +- vagrant.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant/commands/init.rb b/lib/vagrant/commands/init.rb index c5cdd81cb..62a2dc93b 100644 --- a/lib/vagrant/commands/init.rb +++ b/lib/vagrant/commands/init.rb @@ -21,7 +21,7 @@ module Vagrant rootfile_path = File.join(Dir.pwd, Environment::ROOTFILE_NAME) error_and_exit(:rootfile_already_exists) if File.exist?(rootfile_path) - # Copy over the rootfile template into this directory + # Write the rootfile default_box ||= "base" File.open(rootfile_path, 'w+') do |f| f.write(TemplateRenderer.render(Environment::ROOTFILE_NAME, :default_box => default_box)) diff --git a/vagrant.gemspec b/vagrant.gemspec index 1959c3370..37c974fed 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.authors = ["Mitchell Hashimoto", "John Bender"] - s.date = %q{2010-04-19} + s.date = %q{2010-04-21} s.default_executable = %q{vagrant} s.description = %q{Vagrant is a tool for building and distributing virtualized development environments.} s.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]