diff --git a/Rakefile b/Rakefile index f120bf455..709d5f63a 100644 --- a/Rakefile +++ b/Rakefile @@ -114,14 +114,16 @@ task :tags do system %{find src native cef vendor -not -name "*spec.coffee" -type f -print0 | xargs -0 ctags} end -desc "Builds the API docs" -task :docs do - system %{./biscotto -j ~/Development/biscotto/out.json src/app/} -end +namespace :docs do + desc "Builds the API docs" + task :build do + system %{./biscotto -j ~/Development/biscotto/out.json src/app/} + end -desc "Lists the stats for API doc coverage" -task :docsStats do - system %{./biscotto --statsOnly src/app/} + desc "Lists the stats for API doc coverage" + task :stats do + system %{./biscotto --statsOnly src/app/} + end end def application_path