Skip to content

Commit 73f23c0

Browse files
committed
Update references to gcloud
1 parent 1942f2d commit 73f23c0

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

CONTRIBUTING.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ using a Git checkout:
2727
as "hack-on-gcloud". E.g.::
2828

2929
$ cd ~
30-
$ git clone git@github.com:USERNAME/gcloud-python.git hack-on-gcloud
31-
$ cd hack-on-gcloud
30+
$ git clone git@github.com:USERNAME/gcloud-python.git hack-on-gcloud-python
31+
$ cd hack-on-gcloud-python
3232
# Configure remotes such that you can pull changes from the gcloud-python
3333
# repository into your local repository.
3434
$ git remote add upstream https://github.com:GoogleCloudPlatform/gcloud-python
@@ -41,7 +41,7 @@ repo, from which you can submit a pull request.
4141

4242
- Create a virtualenv in which to install ``gcloud-python``::
4343

44-
$ cd ~/hack-on-gcloud
44+
$ cd ~/hack-on-gcloud-python
4545
$ virtualenv --python python2.7 env
4646

4747
Note that very old versions of virtualenv (virtualenv versions below, say,
@@ -52,16 +52,16 @@ repo, from which you can submit a pull request.
5252
flag to ``virtualenv``. For example, ``virtualenv --python python2.7``
5353
chooses the Python 2.7 interpreter to be installed.
5454

55-
From here on in within these instructions, the ``~/hack-on-gcloud/env``
55+
From here on in within these instructions, the ``~/hack-on-gcloud-python/env``
5656
virtual environment you created above will be referred to as ``$VENV``.
5757
To use the instructions in the steps that follow literally, use the
58-
``export VENV=~/hack-on-gcloud/env`` command.
58+
``export VENV=~/hack-on-gcloud-python/env`` command.
5959

6060
- Install ``gcloud-python`` from the checkout into the virtualenv using
6161
``setup.py develop``. Running ``setup.py develop`` *must* be done while
6262
the current working directory is the ``gcloud-python`` checkout directory::
6363

64-
$ cd ~/hack-on-gcloud
64+
$ cd ~/hack-on-gcloud-python
6565
$ $VENV/bin/python setup.py develop
6666

6767
I'm getting weird errors... Can you help?
@@ -131,7 +131,7 @@ Running Tests
131131
combination. For example::
132132

133133
$ sudo /usr/bin/pip install tox
134-
$ cd ~/hack-on-gcloud/
134+
$ cd ~/hack-on-gcloud-python/
135135
$ /usr/bin/tox
136136

137137
Running System Tests
@@ -291,13 +291,13 @@ using to develop ``gcloud-python``):
291291
1. After following the steps above in "Using a Development Checkout", install
292292
Sphinx and all development requirements in your virtualenv::
293293

294-
$ cd ~/hack-on-gcloud
294+
$ cd ~/hack-on-gcloud-python
295295
$ $VENV/bin/pip install Sphinx
296296

297297
2. Change into the ``docs`` directory within your ``gcloud-python`` checkout and
298298
execute the ``make`` command with some flags::
299299

300-
$ cd ~/hack-on-gcloud/gcloud-python/docs
300+
$ cd ~/hack-on-gcloud-python/gcloud-python/docs
301301
$ make clean html SPHINXBUILD=$VENV/bin/sphinx-build
302302

303303
The ``SPHINXBUILD=...`` argument tells Sphinx to use the virtualenv Python,

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
# Grouping the document tree into LaTeX files. List of tuples
214214
# (source start file, target name, title, author, documentclass [howto/manual]).
215215
latex_documents = [
216-
('index', 'gcloud.tex', u'gCloud Documentation',
216+
('index', 'gcloud.tex', u'gcloud-python Documentation',
217217
author, 'manual'),
218218
]
219219

@@ -243,7 +243,7 @@
243243
# One entry per manual page. List of tuples
244244
# (source start file, name, description, authors, manual section).
245245
man_pages = [
246-
('index', 'gcloud', u'gCloud Documentation',
246+
('index', 'gcloud', u'gcloud-python Documentation',
247247
[author], 1)
248248
]
249249

@@ -257,7 +257,7 @@
257257
# (source start file, target name, title, author,
258258
# dir menu entry, description, category)
259259
texinfo_documents = [
260-
('index', 'gcloud', u'gCloud Documentation',
260+
('index', 'gcloud', u'gcloud-python Documentation',
261261
author, 'gcloud', 'Python API for Google Cloud.',
262262
'Miscellaneous'),
263263
]

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
Getting started
146146
---------------
147147

148-
The ``gcloud`` library is ``pip`` install-able:
148+
The ``gcloud-python`` library is ``pip`` install-able:
149149

150150
.. code-block:: console
151151

0 commit comments

Comments
 (0)