1
0
forked from Mirror/wren

Turn on auto-deploying docs.

Looks like it's working now. <crosses fingers>
This commit is contained in:
Bob Nystrom
2018-07-14 21:35:33 -07:00
parent 7b42a9d621
commit ef5f38b48f
3 changed files with 5 additions and 6 deletions

View File

@ -28,7 +28,6 @@ addons:
- python3-markdown
- python3-pygments
- python3-setuptools
- python-smartypants
- ruby-sass
# Can't do container-based builds for now because installing the custom

View File

@ -158,9 +158,10 @@ are available on an object. When you write:
unicorn.isFancy
You're saying "look up the method `isFancy` in the scope of the object
`unicorn`". In this case, the fact that you want to look up a *method* `isFancy`
and not a *variable* `isFancy` is explicit. That's what `.` does and the
object to the left of the period is the object you want to look up the method on.
`unicorn`&rdquo;. In this case, the fact that you want to look up a *method*
`isFancy` and not a *variable* `isFancy` is explicit. That's what `.` does and
the object to the left of the period is the object you want to look up the
method on.
### `this`

View File

@ -10,9 +10,8 @@ cd ../..
make gh-pages
# Clone the repo at the gh-pages branch.
# TODO: Testing right now, so not using live branch.
git clone https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} gh-pages-repo \
--branch gh-pages-temp --depth 1
--branch gh-pages --depth 1
cd gh-pages-repo
# Copy them into the gh-pages branch.