Rakefile in instrumental_agent-0.1.6 vs Rakefile in instrumental_agent-0.2.0
- old
+ new
@@ -1,8 +1,16 @@
require 'bundler/gem_tasks'
+require "rspec/core/rake_task"
+
+task :default => 'spec'
+
+RSpec::Core::RakeTask.new(:spec) do |spec|
+ spec.pattern = 'spec/*_spec.rb'
+ spec.rspec_opts = ['--backtrace']
+end
\ No newline at end of file