public
Description: A Ruby implementation of the Data Encryption Standard
Homepage: http://www.robertsosinski.com
Clone URL: git://github.com/robertsosinski/ruby-des.git
ruby-des / Rakefile
100644 9 lines (7 sloc) 0.159 kb
1
2
3
4
5
6
7
8
9
require 'rake'
require 'rake/testtask'
 
Rake::TestTask.new do |t|
  t.libs << "test"
  t.test_files = FileList['test/*_test.rb']
end
 
task :default => ["test"]