Rakefile 217 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 # -*- encoding: utf-8 -*- require 'bundler/setup' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' desc 'Run the specs' RSpec::Core::RakeTask.new do |r| r.verbose = false end task :default => :spec