diff --git a/Rakefile b/Rakefile index 9d12c0f..8865f91 100644 --- a/Rakefile +++ b/Rakefile @@ -98,3 +98,5 @@ task :preconfig => ssh_config_file do end end end + +Dir.glob('tasks/*.rake').each { |f| load f } diff --git a/tasks/doc.rake b/tasks/doc.rake new file mode 100644 index 0000000..643bf55 --- /dev/null +++ b/tasks/doc.rake @@ -0,0 +1,4 @@ +desc 'Builds documentation' +task :doc do + sh 'make -C docs/ html' +end -- libgit2 0.21.2