From 76ec1326b6219ffce5c9f45fb689baba92cda544 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sat, 2 Mar 2013 20:39:27 -0300 Subject: [PATCH] Its now safe to run rake and guard from outside the dev box --- Guardfile | 2 -- Rakefile | 2 -- 2 files changed, 4 deletions(-) diff --git a/Guardfile b/Guardfile index 190fdc0..2486d8a 100644 --- a/Guardfile +++ b/Guardfile @@ -1,8 +1,6 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme -raise 'You should start guard from the dev box!' unless ENV['USER'] == 'vagrant' - guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) diff --git a/Rakefile b/Rakefile index 396a942..221aec0 100644 --- a/Rakefile +++ b/Rakefile @@ -1,3 +1 @@ -raise 'This Rakefile is meant to be used from the dev box' unless ENV['USER'] == 'vagrant' - Dir['./tasks/**/*.rake'].each { |f| load f }