bookbindery 10.1.7 → 10.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bookbinder.gemspec +2 -2
- data/master_middleman/bookbinder_helpers.rb +3 -3
- data/master_middleman/source/stylesheets/base.scss +0 -73
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b2b01f76f02d7fca2adedfcbffde1237289f67c
|
4
|
+
data.tar.gz: 298cee4fcd33aea7ad9f4c38a567bdebfb6d6a2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8575dea409b9a79d79c788fcb97e75327b1a2967271f3c582d57a455e4290f5b145b52d88974cb557017d06f809e0d3cd10afbc271a2cbf6b9a269768b9f9a8e
|
7
|
+
data.tar.gz: a2138350727530e1dd88f9a560935fa897df5f084a42e93785603543a53fe5c2f0a607d9f38c747719499fb0e7eb4b152ed015940f8132cb81ea2e7664c42d80
|
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 = '10.1.
|
5
|
+
s.version = '10.1.8'
|
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', 'Jess B Heron']
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.add_runtime_dependency 'ansi', ['~> 1.4']
|
20
20
|
s.add_runtime_dependency 'middleman', ['4.1.10']
|
21
21
|
s.add_runtime_dependency 'middleman-livereload'
|
22
|
-
s.add_runtime_dependency 'middleman-syntax'
|
22
|
+
s.add_runtime_dependency 'middleman-syntax', ['2.1.0']
|
23
23
|
s.add_runtime_dependency 'rouge', '!= 1.9.1'
|
24
24
|
s.add_runtime_dependency 'redcarpet', ['~> 3.2.3']
|
25
25
|
s.add_runtime_dependency 'css_parser'
|
@@ -104,15 +104,15 @@ module Bookbinder
|
|
104
104
|
end
|
105
105
|
|
106
106
|
def product_name
|
107
|
-
|
107
|
+
return vars.product_name
|
108
108
|
end
|
109
109
|
|
110
110
|
def product_name_long
|
111
|
-
|
111
|
+
return vars.product_name_long
|
112
112
|
end
|
113
113
|
|
114
114
|
def product_version
|
115
|
-
|
115
|
+
return vars.product_version
|
116
116
|
end
|
117
117
|
|
118
118
|
def set_title(*args)
|
@@ -251,79 +251,6 @@ category: basics
|
|
251
251
|
font-weight: 300;
|
252
252
|
}
|
253
253
|
|
254
|
-
/*doc
|
255
|
-
---
|
256
|
-
title: Content Helper - Note
|
257
|
-
name: content_helper-note
|
258
|
-
category: basics
|
259
|
-
---
|
260
|
-
```html_example
|
261
|
-
<p class="note">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Necessitatibus totam libero facilis voluptatem aliquam incidunt ipsa officiis, dicta nihil expedita, molestiae delectus impedit hic quidem deserunt laudantium, sint debitis tenetur.</p>
|
262
|
-
```
|
263
|
-
*/
|
264
|
-
|
265
|
-
// Notes and tips
|
266
|
-
.note {
|
267
|
-
background: #ffffed;
|
268
|
-
border-color: #ebebd3;
|
269
|
-
border-radius: 3px;
|
270
|
-
border-style: solid;
|
271
|
-
border-width: 1px;
|
272
|
-
margin: 1em 0;
|
273
|
-
padding: 0.7em 1em 0.7em 2.3em;
|
274
|
-
position: relative;
|
275
|
-
&:before {
|
276
|
-
content: $fa-var-lightbulb-o;
|
277
|
-
@extend .fa;
|
278
|
-
color: #b9b781;
|
279
|
-
font-size: 1.5em;
|
280
|
-
left: 0.6em;
|
281
|
-
position: absolute;
|
282
|
-
top: 0.45em;
|
283
|
-
}
|
284
|
-
}
|
285
|
-
|
286
|
-
.note.warning {
|
287
|
-
background-color: #fdd;
|
288
|
-
border-color: #fbb
|
289
|
-
}
|
290
|
-
|
291
|
-
.note.warning:before {
|
292
|
-
color: #f99;
|
293
|
-
}
|
294
|
-
|
295
|
-
/*doc
|
296
|
-
---
|
297
|
-
title: Content Helper - New User Tip
|
298
|
-
name: content_helper-tip
|
299
|
-
category: basics
|
300
|
-
---
|
301
|
-
```html_example
|
302
|
-
<p class="tip">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Necessitatibus totam libero facilis voluptatem aliquam incidunt ipsa officiis, dicta nihil expedita, molestiae delectus impedit hic quidem deserunt laudantium, sint debitis tenetur.</p>
|
303
|
-
```
|
304
|
-
*/
|
305
|
-
|
306
|
-
// Tips for first-time users
|
307
|
-
.tip {
|
308
|
-
background: #ffffff;
|
309
|
-
border-color: $color-border-tip;
|
310
|
-
border-radius: 3px;
|
311
|
-
border-style: solid;
|
312
|
-
border-width: 1px;
|
313
|
-
margin: 1em 0;
|
314
|
-
padding: 1.7em 2em;
|
315
|
-
position: relative;
|
316
|
-
text-align: left;
|
317
|
-
&:before {
|
318
|
-
@extend .fa;
|
319
|
-
color: #7C7C7C;
|
320
|
-
font-size: $font-size-xl;
|
321
|
-
left: 0.5em;
|
322
|
-
position: absolute;
|
323
|
-
top: 0.8em;
|
324
|
-
}
|
325
|
-
}
|
326
|
-
|
327
254
|
// ~CODE EXAMPLE STYLES
|
328
255
|
// ===================================================
|
329
256
|
|
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: 10.1.
|
4
|
+
version: 10.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Grafton
|
@@ -23,7 +23,7 @@ authors:
|
|
23
23
|
autorequire:
|
24
24
|
bindir: install_bin
|
25
25
|
cert_chain: []
|
26
|
-
date: 2017-08-
|
26
|
+
date: 2017-08-24 00:00:00.000000000 Z
|
27
27
|
dependencies:
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: fog-aws
|
@@ -85,16 +85,16 @@ dependencies:
|
|
85
85
|
name: middleman-syntax
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- -
|
88
|
+
- - '='
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
90
|
+
version: 2.1.0
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- -
|
95
|
+
- - '='
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
97
|
+
version: 2.1.0
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: rouge
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|