From 7aed9c6f4feac094cee431fd903244e3720ef602 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 20 Jul 2011 17:23:19 -0700 Subject: [PATCH] Remove YARD since it causes problems with Lion --- Gemfile | 6 ------ Rakefile | 11 ----------- 2 files changed, 17 deletions(-) diff --git a/Gemfile b/Gemfile index d5d55ca58..44dad9bb1 100644 --- a/Gemfile +++ b/Gemfile @@ -12,10 +12,4 @@ group :test do gem "rake" gem "contest", ">= 0.1.2" gem "mocha" - - # For documentation - platforms :ruby do - gem "yard", "~> 0.6.1" - gem "bluecloth" - end end diff --git a/Rakefile b/Rakefile index 644ad39c5..e6fe84b6b 100644 --- a/Rakefile +++ b/Rakefile @@ -9,14 +9,3 @@ Rake::TestTask.new do |t| t.libs << "test" t.pattern = 'test/**/*_test.rb' end - -begin - require 'yard' - YARD::Rake::YardocTask.new do |t| - t.options = ['--main', 'README.md', '--markup', 'markdown'] - t.options += ['--title', 'Vagrant Developer Documentation'] - end -rescue LoadError - puts "Yard not available. Install it with: gem install yard" - puts "if you wish to be able to generate developer documentation." -end