Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Updating included docs and ignoring some that need not be public.
Also making sure `tox -e docs` **always** gets run in update_docs.sh,
to verify the docs build successfully at all times.
  • Loading branch information
dhermes committed Feb 12, 2016
commit 27da4138bf94a106cc48b89fad1f466158a85f7f
7 changes: 7 additions & 0 deletions docs/bigquery-query.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Query
~~~~~

.. automodule:: gcloud.bigquery.query
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/datastore-helpers.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Helpers
~~~~~~~

.. automodule:: gcloud.datastore.helpers
:members:
:undoc-members:
:show-inheritance:
8 changes: 8 additions & 0 deletions docs/gcloud-api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,11 @@ Exceptions
:members:
:undoc-members:
:show-inheritance:

Environment Variables
~~~~~~~~~~~~~~~~~~~~~

.. automodule:: gcloud.environment_vars
:members:
:undoc-members:
:show-inheritance:
3 changes: 3 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
datastore-queries
datastore-transactions
datastore-batches
datastore-helpers

.. toctree::
:maxdepth: 0
Expand All @@ -27,6 +28,7 @@
storage-blobs
storage-buckets
storage-acl
storage-batch

.. toctree::
:maxdepth: 0
Expand All @@ -49,6 +51,7 @@
bigquery-dataset
bigquery-job
bigquery-table
bigquery-query

.. toctree::
:maxdepth: 0
Expand Down
7 changes: 7 additions & 0 deletions docs/storage-batch.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Batches
~~~~~~~

.. automodule:: gcloud.storage.batch
:members:
:undoc-members:
:show-inheritance:
4 changes: 3 additions & 1 deletion scripts/update_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ if [[ "${TRAVIS_BRANCH}" == "master" ]] && \
elif [[ -n "${TRAVIS_TAG}" ]]; then
echo "Building new docs on a tag."
else
echo "Not on Travis, doing nothing."
echo "No docs to update for a new tag or merged commit on Travis."
echo "Verifying docs build successfully."
tox -e docs
exit
fi

Expand Down
7 changes: 7 additions & 0 deletions scripts/verify_included_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@
'gcloud.bigtable.table',

This comment was marked as spam.

This comment was marked as spam.

'gcloud.datastore.demo.demo',
'gcloud.demo',
'gcloud.iterator',
'gcloud.storage.demo.demo',
'gcloud.streaming.buffered_stream',
'gcloud.streaming.exceptions',
'gcloud.streaming.http_wrapper',
'gcloud.streaming.stream_slice',
'gcloud.streaming.transfer',
'gcloud.streaming.util',
])


Expand Down