api-client-ruby/Rakefile
Alex Lushpai a03b78afc5 init
2015-04-13 03:14:25 +03:00

13 lines
216 B
Ruby

# encoding: utf-8
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs.push "lib"
t.test_files = FileList['test/test_*.rb', 'test/spec_*.rb']
t.verbose = true
end
desc "Run tests"
task :default => :test