lazy_api_doc 0.1.6 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31368d253e80c44fce567ac28d48de2e4ade297e3b4801633d5a71d3256da89a
4
- data.tar.gz: d1030d418b1a8097be35afc5a0d6bb86242da3e7b59e84f8fbdc49bac383fd34
3
+ metadata.gz: 568bfda81852a9cd4823ac786f1bfe2de01a32dc42da6c192304c954dd2d731c
4
+ data.tar.gz: 5d4ccbd550f9cf6b16f589b155e71f3dd120a3eb2a475aa43a7ef39e1b0f8bcf
5
5
  SHA512:
6
- metadata.gz: f223f1e4133df068b6587aa0e2cecdede3dec1c1f52e4af2946573927745aac3787fc98168ebeb149b3a2d2cef751179def7c345069abf2ce43d5f9b8b76c40d
7
- data.tar.gz: 62281755d82ec9ac3de295d24bc108f4c462e5c08ebd8507690896dfae276acceffeff9768338ef536dc76d0907407e501c182e13b823414151c2c462961b4b7
6
+ metadata.gz: 7a99bee831aba3c9e8781b413ed4d53c051b47624673296dfbbe94176ae5dd8e54b1130abd767d46e2ec88a473dfc0d813297a12c2f66a9a017ada45997e1091
7
+ data.tar.gz: 8a05e6d6ea878f4eeba9c032a1b0533e83eafc497bd86b8a51a322b3b2f169059a3df2fb665ca9ff1c799c4df69a01d1a59d094c1d3c8ffd9985124842595770
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lazy_api_doc (0.1.6)
4
+ lazy_api_doc (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,10 +1,13 @@
1
1
  # LazyApiDoc
2
2
 
3
- A library to generate OpenAPI V3 documentation from tests.
3
+ A library to generate OpenAPI V3 documentation from tests. Try out the results
4
+ [here](https://bguban.github.io/lazy_api_doc/example).
4
5
 
5
6
  LazyApiDoc collects requests and responses from your controller and request specs, retrieves data types, optional
6
7
  attributes, endpoint description and then generates OpenAPI documentation.
7
8
 
9
+ ![screenshot](./screenshot.png)
10
+
8
11
  ## Installation
9
12
 
10
13
  Add this line to your application's Gemfile:
@@ -25,6 +28,22 @@ Then run install task
25
28
 
26
29
  $ rails g lazy_api_doc:install
27
30
 
31
+ ## Configuration
32
+
33
+ You can customize LazyApiDoc behavior using config file or environment variables.
34
+
35
+ ```yaml
36
+ # config/lazy_api_doc.yml
37
+
38
+ # base directory for storing layout files and generated documentation
39
+ path: 'doc/lazy_api_doc' # ENV['LAZY_API_DOC_PATH'] default: 'public/lazy_api_doc'
40
+
41
+ # TTL for files generated by running tests in different processes (ParallelTest). Each process generates a file.
42
+ # After all the processes are done one of them collects all example files and generates the documentation. In case
43
+ # when the example files were not deleted before running the tests, old files will be ignored.
44
+ example_file_ttl: 1800 # ENV['LAZY_API_DOC_EXAMPLE_FILE_TTL'] default: 1800 (30 minutes)
45
+ ```
46
+
28
47
  ## Usage
29
48
 
30
49
  Update files `public/lazy_api_doc/index.html` and `public/lazy_api_doc/layout.yml`. These files will be
@@ -33,11 +52,11 @@ so on.
33
52
 
34
53
  And just run your tests with `DOC=true` environment variable:
35
54
 
36
- $ DOC=true rspec
55
+ $ LAZY_API_DOC=true rspec
37
56
 
38
57
  or
39
58
 
40
- # DOC=true rake test
59
+ # LAZY_API_DOC=true rake test
41
60
 
42
61
  The documentation will be placed `public/lazy_api_doc/api.yml`. To see it just run server
43
62