mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Specify more namespaces
This commit is contained in:
26
Rakefile
26
Rakefile
@@ -115,14 +115,26 @@ task :tags do
|
||||
end
|
||||
|
||||
namespace :docs do
|
||||
desc "Builds the API docs"
|
||||
task :build do
|
||||
system %{./biscotto -j ~/Development/biscotto/out.json src/app/}
|
||||
end
|
||||
namespace :build do
|
||||
desc "Builds the API docs in src/app"
|
||||
task :app do
|
||||
system %{./biscotto src/app/}
|
||||
end
|
||||
|
||||
desc "Lists the stats for API doc coverage"
|
||||
task :stats do
|
||||
system %{./biscotto --statsOnly src/app/}
|
||||
desc "Lists the stats for API doc coverage in src/app"
|
||||
task :stats do
|
||||
system %{./biscotto --statsOnly src/app/}
|
||||
end
|
||||
|
||||
desc "Builds the API docs in src/package"
|
||||
task :package do
|
||||
system %{./biscotto src/package/}
|
||||
end
|
||||
|
||||
desc "Lists the stats for API doc coverage in src/package"
|
||||
task :stats do
|
||||
system %{./biscotto --statsOnly src/package/}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user