summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2011-11-30 09:39:55 -0800
committerLee Jarvis <lee@jarvis.co>2011-11-30 09:39:55 -0800
commitbce8a1ef73436be7e59565e5f48e3be1591d80be (patch)
treea6afafb8f4c8574c1babc9c095c3762b6afdf423 /Rakefile
parente7fc77104c0b3cc8b4a885201333aa71120c5719 (diff)
downloadslop-bce8a1ef73436be7e59565e5f48e3be1591d80be.tar.gz
load bundler gem_tasks if its available
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 61d8d08..0a0fa77 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,3 +1,8 @@
+begin
+ require 'bundler/gem_tasks'
+rescue LoadError
+end
+
desc 'Run the test suite'
task :test do
$:.unshift './test'