mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
30 lines
620 B
Markdown
30 lines
620 B
Markdown
`build.rb` will generate all clients for all Swagger supported languages.
|
|
|
|
## Building and Deploying Clients
|
|
|
|
### First Time
|
|
|
|
If this is your first time building the clients, you'll need to do the following:
|
|
|
|
1) Install this single gem:
|
|
|
|
```sh
|
|
gem install http
|
|
```
|
|
|
|
2) Create a secret gist on Github and get an API token too.
|
|
|
|
### Every Time
|
|
|
|
Everytime the API spec is updated, be sure to bump the version number in `swagger.yml`, then run:
|
|
|
|
```sh
|
|
ruby build.rb
|
|
```
|
|
|
|
Boom. That's it.
|
|
|
|
## Troubleshooting
|
|
|
|
Sometimes this will fail due to github caching or something and versions will be off. Just bump version and retry.
|