Fix directories the project is on top level dir

This commit is contained in:
Santiago Pastorino
2013-07-25 18:03:04 -03:00
parent 0c91564101
commit 0d4dfb69a9
14 changed files with 221 additions and 25 deletions

13
Rakefile Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require "rake/testtask"
desc 'Run tests'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
task :default => :test