From c4e713f1212522c9d4f8466bf3bcf4e3481fca34 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Sun, 14 Apr 2013 01:44:59 -0700 Subject: [PATCH] Update biscotto --- Rakefile | 8 ++++---- package.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Rakefile b/Rakefile index cf59775a9..f7c33fd80 100644 --- a/Rakefile +++ b/Rakefile @@ -120,24 +120,24 @@ namespace :docs do namespace :app do desc "Builds the API docs in src/app" task :build do - system %{./biscotto -o docs/api src/app/} + system %{./node_modules/biscotto/bin/biscotto -o docs/api src/app/} end desc "Lists the stats for API doc coverage in src/app" task :stats do - system %{./biscotto --statsOnly src/app/} + system %{./node_modules/biscotto/bin/biscotto --statsOnly src/app/} end end namespace :packages do desc "Builds the API docs in src/packages" task :build do - system %{./biscotto -o docs/api src/packages/} + system %{./node_modules/biscotto/bin/biscotto -o docs/api src/packages/} end desc "Lists the stats for API doc coverage in src/packages" task :stats do - system %{./biscotto --statsOnly src/packages/} + system %{./node_modules/biscotto/bin/biscotto --statsOnly src/packages/} end end end diff --git a/package.json b/package.json index 847935de4..b8e537c04 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,8 @@ "space-pen": "git://github.com/nathansobo/space-pen.git" }, - "devDependencies": { - + "devDependencies" : { + "biscotto" : "0.2.0" }, "private": true,