bookbindery 9.12.0 → 9.12.1

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: bfa7154a06a317f1b9334f00c2f37c2fe43e0b23
4
- data.tar.gz: f12a6feab16e8db591ecd9fe2759dcc04837e67c
3
+ metadata.gz: 3e747c9862ad4f70c5c41b7ac8dc2fbf7b3c406a
4
+ data.tar.gz: 02f25c46cd3246239cf47cfdd4d44c90e901f728
5
5
  SHA512:
6
- metadata.gz: 064ea8ecc10fb4610496ffdaafc26280a0238f7d914efa0fafebaa131a329dc5975aa3aaba37bde9c26146aa29a2f497fffa78ab80c63705a6edcf5778a6fe44
7
- data.tar.gz: 7881c57485aeae0b6e17f9409f4cdba0b9425b0c2b895c3107d78ea437a20c7cb8dadc5a9b8694a26b24b027529cb3fe15fb076fb0f15832e9c46637f6030ce8
6
+ metadata.gz: 0c62c5638c916e8db79c197346c1bf4e8eaac89b494596899225adde8f9e9cab17bb12e0a4f1bedf6185fec80aecbb8cada14f95d47e6452e08a3f0939513729
7
+ data.tar.gz: 59e72dce30390fed01a3746d9120b6a6891d1a73b46122f89fd51094ad78fcc5c25a358a376814b8d1cf6177c7072835b7ee36b8b6af7721ca7b3efd182f07b2
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 = '9.12.0'
5
+ s.version = '9.12.1'
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']
@@ -77,7 +77,7 @@ module Bookbinder
77
77
  end
78
78
  }.
79
79
  map(&:first).
80
- detect ->{""} {|text| text}
80
+ detect(Proc.new {""}) {|text| text}
81
81
  end
82
82
 
83
83
  def pattern_for(marker)
@@ -12,7 +12,7 @@ module Bookbinder
12
12
 
13
13
  def preprocess(sections, *args)
14
14
  sections.group_by { |section|
15
- processes.detect ->{ NullProcess.new } { |process| process.applicable_to?(section) }
15
+ processes.detect(Proc.new { NullProcess.new }) { |process| process.applicable_to?(section) }
16
16
  }.each do |process, grouped_sections|
17
17
  process.preprocess(grouped_sections, *args)
18
18
  end
data/template_app/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- ruby '2.3.0'
3
+ ruby '2.5.0'
4
4
 
5
5
  gem 'rack'
6
6
  gem 'rack-rewrite'
@@ -39,5 +39,8 @@ DEPENDENCIES
39
39
  sendgrid-ruby (< 3.0)
40
40
  therubyracer
41
41
 
42
+ RUBY VERSION
43
+ ruby 2.5.3p105
44
+
42
45
  BUNDLED WITH
43
- 1.11.2
46
+ 1.17.3
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: 9.12.0
4
+ version: 9.12.1
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-06-24 00:00:00.000000000 Z
25
+ date: 2019-04-17 00:00:00.000000000 Z
26
26
  dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: fog-aws