mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
Turn on auto-deploying docs.
Looks like it's working now. <crosses fingers>
This commit is contained in:
@ -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
|
||||
|
||||
@ -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`”. 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`
|
||||
|
||||
|
||||
@ -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.
|
||||
|
||||
Reference in New Issue
Block a user