Rakefile in dynamic_controller-0.0.11 vs Rakefile in dynamic_controller-0.0.12
- old
+ new
@@ -1,9 +1,18 @@
require "bundler/gem_tasks"
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new do |task|
+ task.pattern = 'spec/**/*_spec.rb'
+ task.rspec_opts = '--tty --color -f documentation'
+ task.verbose = false
+end
+
+task default: :spec
\ No newline at end of file