From 9710229f7cc36c1f6db585635156344241db1f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81my=20Coutable?= Date: Wed, 17 Aug 2011 10:45:54 +0200 Subject: [PATCH] Use doc formatter again (instead of Fuubar) --- Gemfile | 4 ---- Guardfile | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index fe4b33b..37eab73 100644 --- a/Gemfile +++ b/Gemfile @@ -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 diff --git a/Guardfile b/Guardfile index 106cadf..39cf104 100644 --- a/Guardfile +++ b/Guardfile @@ -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" }