bookbindery 8.3.1 → 8.3.2
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/bookbinder.gemspec +1 -1
- data/lib/bookbinder/commands/watch.rb +9 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6dcbf563b76d259abb7e45182c623fe03a3f1c1
|
|
4
|
+
data.tar.gz: 15a3e3a8154bf626d6a0d301eb959129afee3aa3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f0e93744de2133b328cb7dd27cf571f32c809cf774af9411a2dbad803422835f7e3873eccbc477e08df96f741269bcfc79ddeff77b1c1eddf5b8b043c73b0ed
|
|
7
|
+
data.tar.gz: ab12374a08a7cd83c38f0393bee58078149e41fefaa5b51c48bd3e08d154be9f565fc4ea71d78b3bc06e649f2fd1c43af74640badea4230950f55f138044d0bf
|
data/bookbinder.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ require 'base64'
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'bookbindery'
|
|
5
|
-
s.version = '8.3.
|
|
5
|
+
s.version = '8.3.2'
|
|
6
6
|
s.summary = 'Markdown to Rackup application documentation generator'
|
|
7
7
|
s.description = 'A command line utility to be run in Book repositories to stitch together their constituent Markdown repos into a static-HTML-serving application'
|
|
8
8
|
s.authors = ['Mike Grafton', 'Lucas Marks', 'Gavin Morgan', 'Nikhil Gajwani', 'Dan Wendorf', 'Brenda Chan', 'Matthew Boedicker', 'Andrew Bruce', 'Frank Kotsianas', 'Elena Sharma', 'Christa Hartsock', 'Michael Trestman', 'Alpha Chen', 'Sarah McAlear', 'Gregg Van Hove']
|
|
@@ -62,7 +62,8 @@ module Bookbinder
|
|
|
62
62
|
config: config_decorator.generate(watch_config, sections),
|
|
63
63
|
local_repo_dir: File.expand_path('..'),
|
|
64
64
|
streams: streams,
|
|
65
|
-
subnavs: subnavs(sections)
|
|
65
|
+
subnavs: subnavs(sections),
|
|
66
|
+
product_info: product_infos(sections)
|
|
66
67
|
).exitstatus
|
|
67
68
|
end
|
|
68
69
|
|
|
@@ -85,6 +86,13 @@ module Bookbinder
|
|
|
85
86
|
sections.map(&:subnav).reduce({}, :merge)
|
|
86
87
|
end
|
|
87
88
|
|
|
89
|
+
def product_infos(sections)
|
|
90
|
+
temp = Hash.new
|
|
91
|
+
sections.each do |section|
|
|
92
|
+
temp[section.namespace] = section.product_info
|
|
93
|
+
end
|
|
94
|
+
temp
|
|
95
|
+
end
|
|
88
96
|
end
|
|
89
97
|
end
|
|
90
98
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bookbindery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.3.
|
|
4
|
+
version: 8.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Grafton
|
|
@@ -22,7 +22,7 @@ authors:
|
|
|
22
22
|
autorequire:
|
|
23
23
|
bindir: install_bin
|
|
24
24
|
cert_chain: []
|
|
25
|
-
date: 2016-04-
|
|
25
|
+
date: 2016-04-06 00:00:00.000000000 Z
|
|
26
26
|
dependencies:
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: fog-aws
|