ascii_binder 0.1.14 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.adoc +4 -4
- data/ascii_binder.gemspec +10 -8
- data/bin/asciibinder +16 -1
- data/lib/ascii_binder/engine.rb +10 -13
- data/lib/ascii_binder/helpers.rb +4 -0
- data/lib/ascii_binder/topic_entity.rb +2 -6
- data/lib/ascii_binder/version.rb +1 -1
- data/templates/_templates/_breadcrumb.html.erb +14 -0
- data/templates/_templates/_nav.html.erb +10 -27
- data/templates/_templates/_title.html.erb +8 -0
- data/templates/_templates/page.html.erb +7 -12
- metadata +34 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f2f0c681a484a802db17a50ebbbd8813c8398d4d79cf7b6f91a53cdfb1f460a4
|
4
|
+
data.tar.gz: fdf32199cf71677ae3ca7ff5b8962bde144b03f07feec8686df567c953c48aed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 759f9f9df03df35eaf06e104a62f01aac906860b8e3ee83b3160ea46def33a16a249034482dcbd37007568c75975fd4ea1e33127fc7b2c51e988bf41d2626332
|
7
|
+
data.tar.gz: 6e3d69dc9de3af08151615a57bf501a61501a0c3d1fee5c43c4b4f874861efb131b82f783ea8df7c3a953ff6a06ef0dc4cf4020555842f74093ff3678bc7b7f6
|
data/README.adoc
CHANGED
@@ -4,17 +4,17 @@ image:https://badge.fury.io/rb/ascii_binder.svg["Gem Version", link="https://bad
|
|
4
4
|
|
5
5
|
AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.
|
6
6
|
|
7
|
+
This product is no longer actively maintained.
|
8
|
+
|
7
9
|
== Learn More
|
8
10
|
|
9
|
-
*
|
10
|
-
* Have a gander at the http://www.asciibinder.org/latest/welcome/[AsciiBinder documentation].
|
11
|
-
* Or just take the https://rubygems.org/gems/ascii_binder[ascii_binder Ruby Gem] for a spin.
|
11
|
+
* Take the https://rubygems.org/gems/ascii_binder[ascii_binder Ruby Gem] for a spin.
|
12
12
|
|
13
13
|
The AsciiBinder system was initially developed for https://github.com/openshift/openshift-docs[OpenShift documentation], but has been revised to work for documenting a wide variety of complex, multi-versioned software projects.
|
14
14
|
|
15
15
|
== Contributing
|
16
16
|
|
17
|
-
We are using the https://github.com/redhataccess/ascii_binder/issues[Issues] page to track bugs and feature ideas on the code, so have a look and feel free to ask questions there.
|
17
|
+
We are using the https://github.com/redhataccess/ascii_binder/issues[Issues] page to track bugs and feature ideas on the code, so have a look and feel free to ask questions there.
|
18
18
|
|
19
19
|
== License
|
20
20
|
|
data/ascii_binder.gemspec
CHANGED
@@ -6,11 +6,11 @@ require 'ascii_binder/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "ascii_binder"
|
8
8
|
spec.version = AsciiBinder::VERSION
|
9
|
-
spec.authors = ["N. Harrison Ripps", "Jason Frey", "Carlos Munoz", "Brian Exelbierd"]
|
10
|
-
spec.email = ["nhr@redhat.com", "jfrey@redhat.com", "chavo16@hotmail.com", "bex@pobox.com"]
|
9
|
+
spec.authors = ["N. Harrison Ripps", "Jason Frey", "Carlos Munoz", "Brian Exelbierd", "Vikram Goyal"]
|
10
|
+
spec.email = ["nhr@redhat.com", "jfrey@redhat.com", "chavo16@hotmail.com", "bex@pobox.com", "vigoyal@redhat.com"]
|
11
11
|
spec.summary = %q{AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.}
|
12
12
|
spec.description = spec.summary
|
13
|
-
spec.homepage = "
|
13
|
+
spec.homepage = "https://github.com/redhataccess/ascii_binder"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
@@ -18,21 +18,23 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_development_dependency "bundler"
|
21
|
+
spec.add_development_dependency "bundler"
|
22
22
|
spec.add_development_dependency "cucumber", "~> 2.3.3"
|
23
23
|
spec.add_development_dependency "diff_dirs", "~> 0.1.2"
|
24
|
-
spec.add_dependency "rake", "~>
|
24
|
+
spec.add_dependency "rake", "~> 12.3.3"
|
25
25
|
|
26
|
-
spec.add_dependency 'asciidoctor', '~>
|
27
|
-
spec.add_dependency 'asciidoctor-diagram', '~>
|
26
|
+
spec.add_dependency 'asciidoctor', '~> 2.0.10'
|
27
|
+
spec.add_dependency 'asciidoctor-diagram', '~> 2.0.2'
|
28
|
+
spec.add_dependency 'rouge', '~> 3.18.0'
|
28
29
|
spec.add_dependency 'git'
|
29
30
|
spec.add_dependency 'guard'
|
30
31
|
spec.add_dependency 'guard-shell'
|
31
32
|
spec.add_dependency 'guard-livereload'
|
32
33
|
spec.add_dependency 'haml'
|
33
34
|
spec.add_dependency 'json'
|
34
|
-
spec.add_dependency 'sitemap_generator', '~>
|
35
|
+
spec.add_dependency 'sitemap_generator', '~> 6.0.1'
|
35
36
|
spec.add_dependency 'trollop', '~> 2.1.2'
|
36
37
|
spec.add_dependency 'yajl-ruby', '~> 1.3.0'
|
37
38
|
spec.add_dependency 'tilt'
|
39
|
+
|
38
40
|
end
|
data/bin/asciibinder
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
+
require 'ascii_binder/distro_map'
|
3
4
|
require 'ascii_binder/engine'
|
4
5
|
require 'ascii_binder/helpers'
|
5
6
|
require 'ascii_binder/version'
|
@@ -132,6 +133,7 @@ EOF
|
|
132
133
|
opt :distro, "Instead of building all distros, build branches only for the specified distro.", :default => ''
|
133
134
|
opt :page, "Build only the specified page for all distros and only the current working branch.", :default => ''
|
134
135
|
opt :log_level, "Set the logging output level for this operation.", :default => 'warn'
|
136
|
+
opt :toc_depth, "Maximum depth of topics allowed. Use 0 for infinite depth.", :default => 3
|
135
137
|
conflicts :distro, :page
|
136
138
|
end
|
137
139
|
when "create"
|
@@ -206,6 +208,7 @@ Options:
|
|
206
208
|
EOF
|
207
209
|
opt :site, "Instead of packaging every docs site, package the specified site only.", :default => ''
|
208
210
|
opt :log_level, "Set the logging output level for this operation.", :default => 'warn'
|
211
|
+
opt :toc_depth, "Maximum depth of topics allowed. Use 0 for infinite depth.", :default => 3
|
209
212
|
end
|
210
213
|
when "help"
|
211
214
|
Trollop::educate
|
@@ -273,6 +276,13 @@ unless cmd_opts.nil? or cmd_opts[:log_level].nil?
|
|
273
276
|
end
|
274
277
|
set_log_level(user_log_level)
|
275
278
|
|
279
|
+
# Set the depth level
|
280
|
+
user_depth = 3
|
281
|
+
unless cmd_opts.nil? or cmd_opts[:toc_depth].nil?
|
282
|
+
user_depth = cmd_opts[:toc_depth].to_i
|
283
|
+
end
|
284
|
+
set_depth(user_depth)
|
285
|
+
|
276
286
|
|
277
287
|
# Cloning? Time to try it.
|
278
288
|
if cmd == 'clone'
|
@@ -284,9 +294,14 @@ if cmd == 'clone'
|
|
284
294
|
repo_check(docs_basedir)
|
285
295
|
|
286
296
|
if cmd_opts[:branches]
|
297
|
+
cloned_map = AsciiBinder::DistroMap.new(File.join(docs_basedir,DISTRO_MAP_FILENAME))
|
298
|
+
unless cloned_map.is_valid?
|
299
|
+
error_info = cloned_map.errors.join("\n")
|
300
|
+
Trollop::die "The distro map in the newly cloned repo is invalid, with the following errors:\n#{error_info}"
|
301
|
+
end
|
287
302
|
Dir.chdir(docs_basedir)
|
288
303
|
puts "Tracking branch setup:"
|
289
|
-
distro_branches.each do |doc_branch|
|
304
|
+
cloned_map.distro_branches.each do |doc_branch|
|
290
305
|
next if doc_branch == 'master'
|
291
306
|
puts "- #{doc_branch}"
|
292
307
|
system("git branch #{doc_branch} origin/#{doc_branch}")
|
data/lib/ascii_binder/engine.rb
CHANGED
@@ -188,12 +188,13 @@ module AsciiBinder
|
|
188
188
|
args[:breadcrumb_root], args[:breadcrumb_group], args[:breadcrumb_subgroup], args[:breadcrumb_topic] = extract_breadcrumbs(args)
|
189
189
|
|
190
190
|
args[:breadcrumb_subgroup_block] = ''
|
191
|
-
args[:subtopic_shim] = ''
|
192
191
|
if args[:breadcrumb_subgroup]
|
193
192
|
args[:breadcrumb_subgroup_block] = "<li class=\"hidden-xs active\">#{args[:breadcrumb_subgroup]}</li>"
|
194
|
-
args[:subtopic_shim] = '../'
|
195
193
|
end
|
196
194
|
|
195
|
+
args[:subtopic_shim] = '../' * (args[:topic_id].split('::').length - 2)
|
196
|
+
args[:subtopic_shim] = '' if args[:subtopic_shim].nil?
|
197
|
+
|
197
198
|
template_path = File.expand_path("#{docs_root_dir}/_templates/page.html.erb")
|
198
199
|
template_renderer.render(template_path, args)
|
199
200
|
end
|
@@ -237,8 +238,7 @@ module AsciiBinder
|
|
237
238
|
|
238
239
|
def asciidoctor_page_attrs(more_attrs=[])
|
239
240
|
[
|
240
|
-
'source-highlighter=
|
241
|
-
'coderay-css=style',
|
241
|
+
'source-highlighter=rouge',
|
242
242
|
'linkcss!',
|
243
243
|
'icons=font',
|
244
244
|
'idprefix=',
|
@@ -466,10 +466,6 @@ module AsciiBinder
|
|
466
466
|
article_title = doc.doctitle || topic.name
|
467
467
|
|
468
468
|
topic_html = doc.render
|
469
|
-
dir_depth = ''
|
470
|
-
if branch_config.dir.split('/').length > 1
|
471
|
-
dir_depth = '../' * (branch_config.dir.split('/').length - 1)
|
472
|
-
end
|
473
469
|
|
474
470
|
# This is logic bridges newer arbitrary-depth-tolerant code to
|
475
471
|
# older depth-limited code. Truly removing depth limitations will
|
@@ -484,8 +480,9 @@ module AsciiBinder
|
|
484
480
|
if breadcrumb.length == 3
|
485
481
|
subgroup_title = breadcrumb[1][:name]
|
486
482
|
subgroup_id = breadcrumb[1][:id]
|
487
|
-
dir_depth = '../' + dir_depth
|
488
483
|
end
|
484
|
+
dir_depth = '../' * topic.breadcrumb[-1][:id].split('::').length
|
485
|
+
dir_depth = '' if dir_depth.nil?
|
489
486
|
|
490
487
|
preview_path = topic.preview_path(distro.id,branch_config.dir)
|
491
488
|
topic_publish_url = topic.topic_publish_url(distro.site.url,branch_config.dir)
|
@@ -508,10 +505,10 @@ module AsciiBinder
|
|
508
505
|
:group_id => group_id,
|
509
506
|
:subgroup_id => subgroup_id,
|
510
507
|
:topic_id => topic_id,
|
511
|
-
:css_path => "
|
512
|
-
:javascripts_path => "
|
513
|
-
:images_path => "
|
514
|
-
:site_home_path => "
|
508
|
+
:css_path => "#{dir_depth}#{branch_config.dir}/#{STYLESHEET_DIRNAME}/",
|
509
|
+
:javascripts_path => "#{dir_depth}#{branch_config.dir}/#{JAVASCRIPT_DIRNAME}/",
|
510
|
+
:images_path => "#{dir_depth}#{branch_config.dir}/#{IMAGE_DIRNAME}/",
|
511
|
+
:site_home_path => "#{dir_depth}index.html",
|
515
512
|
:template_path => template_dir,
|
516
513
|
:repo_path => topic.repo_path,
|
517
514
|
}
|
data/lib/ascii_binder/helpers.rb
CHANGED
@@ -239,12 +239,8 @@ module AsciiBinder
|
|
239
239
|
end
|
240
240
|
end
|
241
241
|
|
242
|
-
# Check the depth.
|
243
|
-
|
244
|
-
# [<group>,<subgroup>,<topic>]
|
245
|
-
#
|
246
|
-
# But this limit will be lifted in the next major version
|
247
|
-
if depth > 2
|
242
|
+
# Check the depth.
|
243
|
+
if (depth > AsciiBinder::DEPTH) and (AsciiBinder::DEPTH != 0)
|
248
244
|
if verbose
|
249
245
|
errors << "#{entity_id} exceeds the maximum nested depth."
|
250
246
|
else
|
data/lib/ascii_binder/version.rb
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
<%- navigation.each do |topic_group| -%>
|
2
|
+
<%- if topic_id.start_with?(topic_group[:id]) %>
|
3
|
+
<li class="hidden-xs active">
|
4
|
+
<%- if topic_group.has_key?(:topics) -%>
|
5
|
+
<a href="<%= subtopic_shim %><%= topic_group[:path] %>"><%= topic_group[:name] %></a>
|
6
|
+
<%- else -%>
|
7
|
+
<%= topic_group[:name] %>
|
8
|
+
<%- end -%>
|
9
|
+
</li>
|
10
|
+
<%- end -%>
|
11
|
+
<%- if topic_group.has_key?(:topics) -%>
|
12
|
+
<%= render("_templates/_breadcrumb.html.erb", :navigation => topic_group[:topics], :topic_id => topic_id, :subtopic_shim => subtopic_shim) %>
|
13
|
+
<%- end -%>
|
14
|
+
<%- end -%>
|
@@ -1,31 +1,14 @@
|
|
1
|
-
|
2
|
-
<%-
|
3
|
-
|
1
|
+
<%- navigation.each do |topic_group| -%>
|
2
|
+
<%- if not topic_group.has_key?(:topics) -%>
|
3
|
+
<li><a class="<%= topic_id.start_with?(topic_group[:id]) ? ' active' : '' %>" href="<%= subtopic_shim %><%= topic_group[:path] %>"><%= topic_group[:name] %></a></li>
|
4
|
+
<%- else -%>
|
4
5
|
<li class="nav-header">
|
5
|
-
<a class="" href="#" data-toggle="collapse" data-target="#topicGroup
|
6
|
-
<span id="
|
6
|
+
<a class="" href="#" data-toggle="collapse" data-target="#topicGroup-<%= topic_group[:id].hash %>">
|
7
|
+
<span id="sgSpan-<%= topic_group[:id].hash %>" class="fa <%= topic_id.start_with?(topic_group[:id]) ? 'fa-caret-down' : 'fa-caret-right' %>"></span> <%= topic_group[:name] %>
|
7
8
|
</a>
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<%- current_topic = current_group && (topic[:id] == topic_id) -%>
|
12
|
-
<li><a class="<%= current_topic ? ' active' : '' %>" href="<%= subtopic_shim %><%= topic[:path] %>"><%= topic[:name] %></a></li>
|
13
|
-
<%- else -%>
|
14
|
-
<%- current_subgroup = topic[:id] == subgroup_id -%>
|
15
|
-
<li class="nav-header">
|
16
|
-
<a class="" href="#" data-toggle="collapse" data-target="#topicSubGroup-<%= groupidx %>-<%= topicidx %>">
|
17
|
-
<span id="sgSpan-<%= groupidx %>-<%= topicidx %>" class="fa <%= current_subgroup ? 'fa-caret-down' : 'fa-caret-right' %>"></span> <%= topic[:name] %>
|
18
|
-
</a>
|
19
|
-
<ul id="topicSubGroup-<%= groupidx %>-<%= topicidx %>" class="nav-tertiary list-unstyled collapse<%= current_subgroup ? ' in' : '' %>">
|
20
|
-
<%- topic[:topics].each do |subtopic| -%>
|
21
|
-
<%- current_subtopic = current_group && current_subgroup && (subtopic[:id] == topic_id) %>
|
22
|
-
<li><a class="<%= current_subtopic ? ' active' : '' %>" href="<%= subtopic_shim %><%= subtopic[:path] %>"><%= subtopic[:name] %></a></li>
|
23
|
-
<%- end -%>
|
24
|
-
</ul>
|
25
|
-
</li>
|
26
|
-
<%- end -%>
|
27
|
-
<%- end -%>
|
28
|
-
</ul>
|
9
|
+
<ul id="topicGroup-<%= topic_group[:id].hash %>" class="collapse <%= topic_id.start_with?(topic_group[:id]) ? 'in' : '' %> list-unstyled">
|
10
|
+
<%= render("_templates/_nav.html.erb", :navigation => topic_group[:topics], :topic_id => topic_id, :subtopic_shim => subtopic_shim) %>
|
11
|
+
</ul>
|
29
12
|
</li>
|
30
13
|
<%- end -%>
|
31
|
-
|
14
|
+
<%- end -%>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%- navigation.each do |topic_group| -%>
|
2
|
+
<%- if topic_id.start_with?(topic_group[:id]) %>
|
3
|
+
| <%= topic_group[:name] %>
|
4
|
+
<%- end -%>
|
5
|
+
<%- if topic_group.has_key?(:topics) -%>
|
6
|
+
<%= render("_templates/_title.html.erb", :navigation => topic_group[:topics], :topic_id => topic_id) %>
|
7
|
+
<%- end -%>
|
8
|
+
<%- end -%>
|
@@ -4,7 +4,9 @@
|
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
6
6
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
7
|
-
<title><%= distro %> <%= version %>
|
7
|
+
<title><%= distro %> <%= version %>
|
8
|
+
<%= render("_templates/_title.html.erb", :navigation => navigation, :topic_id => topic_id) %>
|
9
|
+
</title>
|
8
10
|
|
9
11
|
<!-- Bootstrap -->
|
10
12
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
|
@@ -39,20 +41,13 @@
|
|
39
41
|
<li class="sitename">
|
40
42
|
<a href="<%= site_home_path %>"><%= site_name %></a>
|
41
43
|
</li>
|
42
|
-
|
43
|
-
<%= breadcrumb_root %>
|
44
|
-
</li>
|
45
|
-
<li class="hidden-xs active">
|
46
|
-
<%= breadcrumb_group %>
|
47
|
-
</li>
|
48
|
-
<%= breadcrumb_subgroup_block %>
|
49
|
-
<li class="hidden-xs active">
|
50
|
-
<%= breadcrumb_topic %>
|
51
|
-
</li>
|
44
|
+
<%= render("_templates/_breadcrumb.html.erb", :navigation => navigation, :topic_id => topic_id, :subtopic_shim => subtopic_shim) %>
|
52
45
|
</ol>
|
53
46
|
<div class="row row-offcanvas row-offcanvas-left">
|
54
47
|
<div class="col-xs-8 col-sm-3 col-md-3 sidebar sidebar-offcanvas">
|
55
|
-
|
48
|
+
<ul class="nav nav-sidebar">
|
49
|
+
<%= render("_templates/_nav.html.erb", :navigation => navigation, :topic_id => topic_id, :subtopic_shim => subtopic_shim) %>
|
50
|
+
</ul>
|
56
51
|
</div>
|
57
52
|
<div class="col-xs-12 col-sm-9 col-md-9 main">
|
58
53
|
<div class="page-header">
|
metadata
CHANGED
@@ -1,32 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ascii_binder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- N. Harrison Ripps
|
8
8
|
- Jason Frey
|
9
9
|
- Carlos Munoz
|
10
10
|
- Brian Exelbierd
|
11
|
+
- Vikram Goyal
|
11
12
|
autorequire:
|
12
13
|
bindir: bin
|
13
14
|
cert_chain: []
|
14
|
-
date:
|
15
|
+
date: 2020-06-14 00:00:00.000000000 Z
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
17
18
|
name: bundler
|
18
19
|
requirement: !ruby/object:Gem::Requirement
|
19
20
|
requirements:
|
20
|
-
- - "
|
21
|
+
- - ">="
|
21
22
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
23
|
+
version: '0'
|
23
24
|
type: :development
|
24
25
|
prerelease: false
|
25
26
|
version_requirements: !ruby/object:Gem::Requirement
|
26
27
|
requirements:
|
27
|
-
- - "
|
28
|
+
- - ">="
|
28
29
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
30
|
+
version: '0'
|
30
31
|
- !ruby/object:Gem::Dependency
|
31
32
|
name: cucumber
|
32
33
|
requirement: !ruby/object:Gem::Requirement
|
@@ -61,42 +62,56 @@ dependencies:
|
|
61
62
|
requirements:
|
62
63
|
- - "~>"
|
63
64
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
65
|
+
version: 12.3.3
|
65
66
|
type: :runtime
|
66
67
|
prerelease: false
|
67
68
|
version_requirements: !ruby/object:Gem::Requirement
|
68
69
|
requirements:
|
69
70
|
- - "~>"
|
70
71
|
- !ruby/object:Gem::Version
|
71
|
-
version:
|
72
|
+
version: 12.3.3
|
72
73
|
- !ruby/object:Gem::Dependency
|
73
74
|
name: asciidoctor
|
74
75
|
requirement: !ruby/object:Gem::Requirement
|
75
76
|
requirements:
|
76
77
|
- - "~>"
|
77
78
|
- !ruby/object:Gem::Version
|
78
|
-
version:
|
79
|
+
version: 2.0.10
|
79
80
|
type: :runtime
|
80
81
|
prerelease: false
|
81
82
|
version_requirements: !ruby/object:Gem::Requirement
|
82
83
|
requirements:
|
83
84
|
- - "~>"
|
84
85
|
- !ruby/object:Gem::Version
|
85
|
-
version:
|
86
|
+
version: 2.0.10
|
86
87
|
- !ruby/object:Gem::Dependency
|
87
88
|
name: asciidoctor-diagram
|
88
89
|
requirement: !ruby/object:Gem::Requirement
|
89
90
|
requirements:
|
90
91
|
- - "~>"
|
91
92
|
- !ruby/object:Gem::Version
|
92
|
-
version:
|
93
|
+
version: 2.0.2
|
94
|
+
type: :runtime
|
95
|
+
prerelease: false
|
96
|
+
version_requirements: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - "~>"
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: 2.0.2
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: rouge
|
103
|
+
requirement: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - "~>"
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: 3.18.0
|
93
108
|
type: :runtime
|
94
109
|
prerelease: false
|
95
110
|
version_requirements: !ruby/object:Gem::Requirement
|
96
111
|
requirements:
|
97
112
|
- - "~>"
|
98
113
|
- !ruby/object:Gem::Version
|
99
|
-
version:
|
114
|
+
version: 3.18.0
|
100
115
|
- !ruby/object:Gem::Dependency
|
101
116
|
name: git
|
102
117
|
requirement: !ruby/object:Gem::Requirement
|
@@ -187,14 +202,14 @@ dependencies:
|
|
187
202
|
requirements:
|
188
203
|
- - "~>"
|
189
204
|
- !ruby/object:Gem::Version
|
190
|
-
version:
|
205
|
+
version: 6.0.1
|
191
206
|
type: :runtime
|
192
207
|
prerelease: false
|
193
208
|
version_requirements: !ruby/object:Gem::Requirement
|
194
209
|
requirements:
|
195
210
|
- - "~>"
|
196
211
|
- !ruby/object:Gem::Version
|
197
|
-
version:
|
212
|
+
version: 6.0.1
|
198
213
|
- !ruby/object:Gem::Dependency
|
199
214
|
name: trollop
|
200
215
|
requirement: !ruby/object:Gem::Requirement
|
@@ -244,6 +259,7 @@ email:
|
|
244
259
|
- jfrey@redhat.com
|
245
260
|
- chavo16@hotmail.com
|
246
261
|
- bex@pobox.com
|
262
|
+
- vigoyal@redhat.com
|
247
263
|
executables:
|
248
264
|
- ascii_binder
|
249
265
|
- asciibinder
|
@@ -323,13 +339,15 @@ files:
|
|
323
339
|
- templates/_javascripts/.gitkeep
|
324
340
|
- templates/_javascripts/bootstrap-offcanvas.js
|
325
341
|
- templates/_stylesheets/asciibinder.css
|
342
|
+
- templates/_templates/_breadcrumb.html.erb
|
326
343
|
- templates/_templates/_css.html.erb
|
327
344
|
- templates/_templates/_nav.html.erb
|
345
|
+
- templates/_templates/_title.html.erb
|
328
346
|
- templates/_templates/page.html.erb
|
329
347
|
- templates/_topic_map.yml
|
330
348
|
- templates/index-main.html
|
331
349
|
- templates/welcome/index.adoc
|
332
|
-
homepage:
|
350
|
+
homepage: https://github.com/redhataccess/ascii_binder
|
333
351
|
licenses:
|
334
352
|
- MIT
|
335
353
|
metadata: {}
|
@@ -348,8 +366,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
348
366
|
- !ruby/object:Gem::Version
|
349
367
|
version: '0'
|
350
368
|
requirements: []
|
351
|
-
|
352
|
-
rubygems_version: 2.6.14
|
369
|
+
rubygems_version: 3.0.3
|
353
370
|
signing_key:
|
354
371
|
specification_version: 4
|
355
372
|
summary: AsciiBinder is an AsciiDoc-based system for authoring and publishing closely
|