require 'bundler' Bundler::GemHelper.install_tasks task :default => :spec desc 'run the specs' task :spec do sh 'rspec spec' end