Blame view

Rakefile 198 Bytes
31f9a345   Isaac Lewis   init; some tests
1
  require "bundler/gem_tasks"
87fd11a1   Isaac Lewis   reorg
2
  require "rake/testtask"
31f9a345   Isaac Lewis   init; some tests
3
  
87fd11a1   Isaac Lewis   reorg
4
5
6
7
8
  Rake::TestTask.new(:test) do |t|
    t.libs << "test"
    t.libs << "lib"
    t.test_files = FileList["test/**/*_test.rb"]
  end
31f9a345   Isaac Lewis   init; some tests
9
  
87fd11a1   Isaac Lewis   reorg
10
  task :default => :test