#!/usr/bin/env rake require "bundler/gem_tasks" require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks desc 'Default: run tests.' task :default => [:spec] task :spec do RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = './spec/**/*_spec.rb' end end