#!/usr/bin/env rake require "bundler/gem_tasks" desc 'Default: Run all tests.' task :default => 'specs' # now you can run the tests by just typing "rake" into your console desc 'Run specs' task :specs do system('rspec') end