Commit 39ad22c8 authored by Adam Barth's avatar Adam Barth

Merge pull request #1124 from sethladd/gen-docs-for-sprites

generate docs for sprites
parents 60ef3836 ef4ea9b7
......@@ -72,6 +72,8 @@
<dd>Simple physics simulations.</dd>
<dt><a href="/playfair/">playfair</a></dt>
<dd>A simple charting library for Flutter.</dd>
<dt><a href="/flutter_sprites/">flutter_sprites</a></dt>
<dd>A sprite toolkit built on top of Flutter.</dd>
</dl>
</article>
</div>
......
......@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// A sprite toolkit built on top of Flutter.
library flutter_sprites;
import 'dart:async';
......
......@@ -30,6 +30,7 @@ if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
(cd packages/newton; ~/.pub-cache/bin/dartdoc --header=/tmp/_header.html)
(cd packages/cassowary; ~/.pub-cache/bin/dartdoc --header=/tmp/_header.html)
(cd packages/flutter_test; ~/.pub-cache/bin/dartdoc --header=/tmp/_header.html)
(cd packages/flutter_sprites; ~/.pub-cache/bin/dartdoc --header=/tmp/_header.html)
GSUTIL=$HOME/google-cloud-sdk/bin/gsutil
GCLOUD=$HOME/google-cloud-sdk/bin/gcloud
......@@ -41,5 +42,6 @@ if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
$GSUTIL -m -q rsync -r -d packages/newton/doc/api gs://docs.flutter.io/newton
$GSUTIL -m -q rsync -r -d packages/cassowary/doc/api gs://docs.flutter.io/cassowary
$GSUTIL -m -q rsync -r -d packages/flutter_test/doc/api gs://docs.flutter.io/flutter_test
$GSUTIL -m -q rsync -r -d packages/flutter_sprites/doc/api gs://docs.flutter.io/flutter_sprites
fi
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment