apiaryio 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/apiary/cli.rb +1 -1
- data/lib/apiary/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d21233e15d94d35249adb071f7151775748dc14a
|
|
4
|
+
data.tar.gz: fb98acaed6c946211117b350f9e1bab39ca5e7b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4689774c382446f4c0e69b6e330880b05d7897378d889fb4b810c5aca982b7bfe4c1d26727bf165323967a544c54c195d221c5b62ccd97f0d43a7106af3bacb
|
|
7
|
+
data.tar.gz: ac7073c9354837367632c29cab95b8325364e1855c9ef400f861c7d87268f02defe6b91fb03bfeb2f50899f4eac9ae526b08b2f786219eef9ff8c2710673b024
|
data/README.md
CHANGED
|
@@ -60,7 +60,7 @@ Commands:
|
|
|
60
60
|
apiary fetch --api-name=API_NAME # Fetch API Description Document from API_NAME.apiary.io
|
|
61
61
|
apiary help [COMMAND] # Describe available commands or one specific command
|
|
62
62
|
apiary preview # Show API documentation in browser or write it to file
|
|
63
|
-
apiary publish --api-name=API_NAME # Publish API Description Document on docs.API_NAME.apiary.io
|
|
63
|
+
apiary publish --api-name=API_NAME # Publish API Description Document on docs.API_NAME.apiary.io (API Description must exist on apiary.io)
|
|
64
64
|
apiary version # Show version
|
|
65
65
|
|
|
66
66
|
```
|
|
@@ -114,7 +114,7 @@ Options:
|
|
|
114
114
|
[--api-host=HOST] # Specify apiary host
|
|
115
115
|
--api-name=API_NAME
|
|
116
116
|
|
|
117
|
-
Publish API Description Document on docs.API_NAME.apiary.io
|
|
117
|
+
Publish API Description Document on docs.API_NAME.apiary.io (API Description must exist on apiary.io)
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
#### version
|
data/lib/apiary/cli.rb
CHANGED
|
@@ -30,7 +30,7 @@ module Apiary
|
|
|
30
30
|
cmd.execute
|
|
31
31
|
end
|
|
32
32
|
|
|
33
|
-
desc 'publish', 'Publish API Description Document on docs.API_NAME.apiary.io'
|
|
33
|
+
desc 'publish', 'Publish API Description Document on docs.API_NAME.apiary.io (API Description must exist on apiary.io)'
|
|
34
34
|
method_option :message, type: :string, banner: 'COMMIT_MESSAGE', desc: 'Publish with custom commit message'
|
|
35
35
|
method_option :path, type: :string, desc: 'Specify path to API Description Document. When given a directory, it will look for apiary.apib or swagger.yaml file'
|
|
36
36
|
method_option :api_host, type: :string, banner: 'HOST', desc: 'Specify apiary host'
|
data/lib/apiary/version.rb
CHANGED