Add stats tasks

This commit is contained in:
Garen Torikian
2013-04-09 14:49:41 -05:00
parent a16428c5b6
commit 19c347903a

View File

@@ -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