update rakefile

This commit is contained in:
John Bintz 2011-06-18 12:40:53 -04:00
parent f93fc6e1d0
commit 39c964a968
1 changed files with 8 additions and 0 deletions

View File

@ -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