Rakefile in factor-0.5.05 vs Rakefile in factor-0.5.06
- old
+ new
@@ -1,5 +1,12 @@
+# encoding: UTF-8
+
+require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
-RSpec::Core::RakeTask.new(:spec)
+desc 'Run specs'
+RSpec::Core::RakeTask.new do |t|
+ t.verbose = false
+ t.rspec_opts = '--color --order random'
+end
-task :default => :spec
\ No newline at end of file
+task default: :spec