File tree Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,26 @@ class DocsCLI < Thor
12
12
end
13
13
14
14
desc 'list' , 'List available documentations'
15
+ option :packaged , type : :boolean
15
16
def list
16
- output = Docs . all . flat_map do |doc |
17
- name = doc . to_s . demodulize . underscore
18
- if doc . versioned?
19
- doc . versions . map { |_doc | "#{ name } @#{ _doc . version } " }
20
- else
21
- name
17
+ if options [ :packaged ]
18
+ names = Dir [ File . join ( Docs . store_path , '*.tar.gz' ) ] . map { |f | File . basename ( f , '.tar.gz' ) }
19
+ puts names
20
+ else
21
+ names = Docs . all . flat_map do |doc |
22
+ name = doc . to_s . demodulize . underscore
23
+ if doc . versioned?
24
+ doc . versions . map { |_doc | "#{ name } @#{ _doc . version } " }
25
+ else
26
+ name
27
+ end
22
28
end
23
- end . join ( "\n " )
24
29
25
- require 'tty-pager'
26
- TTY ::Pager . new . page ( output )
30
+ output = names . join ( "\n " )
31
+
32
+ require 'tty-pager'
33
+ TTY ::Pager . new . page ( output )
34
+ end
27
35
end
28
36
29
37
desc 'page <doc> [path] [--version] [--verbose] [--debug]' , 'Generate a page (no indexing)'
You can’t perform that action at this time.
0 commit comments