From 39c964a968ce299fa3b52c08b55304fb87aaf7a2 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Sat, 18 Jun 2011 12:40:53 -0400 Subject: [PATCH] update rakefile --- Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Rakefile b/Rakefile index 55bfca0..a66bd53 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,15 @@ +include Rake::DSL if defined?(Rake::DSL) + require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' +desc 'Push everywhere!' +task :push_everywhere do + system %{git push origin master} + system %{git push guard master} +end + RSpec::Core::RakeTask.new(:spec) namespace :spec do