bookbindery 8.3.1 → 8.3.2

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
  SHA1:
3
- metadata.gz: c154ad8fec8fdd29dc3d0903284a0e1a4881a07b
4
- data.tar.gz: a55e6f83bc4bf5f5f093347f378a669215f9607a
3
+ metadata.gz: d6dcbf563b76d259abb7e45182c623fe03a3f1c1
4
+ data.tar.gz: 15a3e3a8154bf626d6a0d301eb959129afee3aa3
5
5
  SHA512:
6
- metadata.gz: 31c0e9dcde7993a82682be704198d8b2367f065f27c604ad8b3419b6465cf2743b454d709713b40e07e4d6af6616d237936a31d478785148ce1083ba8e3d847a
7
- data.tar.gz: ad36af5f301353b909e1c79c9b198e334c74d391decff4c63cc15b463acda3e93cdda50df56205735681a341e8b073b9bf1ae191f7547c875fd2b09db008abf6
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.1'
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.1
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-04 00:00:00.000000000 Z
25
+ date: 2016-04-06 00:00:00.000000000 Z
26
26
  dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: fog-aws