Use doc formatter again (instead of Fuubar)

This commit is contained in:
Rémy Coutable 2011-08-17 10:45:54 +02:00
parent dc2ab97d23
commit 9710229f7c
2 changed files with 1 additions and 5 deletions

View File

@ -8,10 +8,6 @@ group :guard do
gem 'guard-ronn'
end
group :test do
gem 'fuubar'
end
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i

View File

@ -1,4 +1,4 @@
guard :rspec, :version => 2, :keep_failed => false, :cli => '--format Fuubar' do
guard :rspec, :version => 2, :keep_failed => false, :cli => '-f doc' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }