summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-05-25 12:51:47 +0200
committerAzul <azul@riseup.net>2016-05-25 12:51:47 +0200
commitb883fa9e91ffd7c526a17f37df54ef63c5c6a4b8 (patch)
tree2291052d1a0bf5eadae43969aa915af44855a0aa /Rakefile
parent69f9b2cb51ff3b9fb3de39f657f734e507ccec68 (diff)
rubocop: initialize and use ruby 1.9 hash syntax
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 6bfd0d9..c1eb913 100644
--- a/Rakefile
+++ b/Rakefile
@@ -10,9 +10,11 @@ require "rake/testtask"
##
Rake::TestTask.new do |t|
- t.pattern = "test/unit/*_test.rb"
+ t.pattern = "test/**/*_test.rb"
+ t.libs << "test"
+ t.verbose = true
end
-task :default => :test
+task default: :test
##
## GEM BUILDING AND INSTALLING