From e250a0cb52ce04d24583aaadef256ee592162d4a Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 25 Jul 2014 10:59:48 -0400 Subject: [PATCH] Rake installs THEN specs --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 98d4359..02927a9 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,7 @@ require 'rspec/core/rake_task' require 'yard' RSpec::Core::RakeTask.new(:spec) -task :default => [:spec, :install] +task :default => [:install, :spec] YARD::Rake::YardocTask.new(:doc) do |t| t.files = ['lib/**/*.rb', 'samples/**/*.rb'] # optional