diff options
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -10,18 +10,17 @@ end task :gendoc do #puts 'yard doc generation disabled until JRuby build native extensions for redcarpet or yard removes the dependency.' - system "yardoc" - system "yard stats --list-undoc" + system "yardoc" + system "yard stats --list-undoc" end -task :test do - require 'rake/testtask' - Rake::TestTask.new do |t| - t.libs << 'test' - t.test_files = FileList['test/**/tc_*.rb'] - t.verbose = false - t.warning = true - end + +require 'rake/testtask' +Rake::TestTask.new do |t| + t.libs << 'test' + t.test_files = FileList['test/**/tc_*.rb'] + t.verbose = false + t.warning = true end task :release => :build do |
