guide 0.7.0 → 0.8.0
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/Rakefile +27 -0
- data/app/assets/javascripts/guide/application.js +1728 -491
- data/app/assets/javascripts/guide/scenario.js +1 -1
- data/app/assets/stylesheets/guide/application.css +58 -71
- data/lib/guide/version.rb +1 -1
- metadata +5 -5
@@ -1,4 +1,4 @@
|
|
1
|
-
(function e
|
1
|
+
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
2
2
|
var $ = window.jQuery = require('jquery')
|
3
3
|
require('iframe-resizer/js/iframeResizer.contentWindow.js')
|
4
4
|
require('./vendor/modernizr')
|
@@ -1,88 +1,80 @@
|
|
1
|
+
/* PrismJS 1.24.0
|
2
|
+
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
1
3
|
/**
|
2
4
|
* prism.js default theme for JavaScript, CSS and HTML
|
3
5
|
* Based on dabblet (http://dabblet.com)
|
4
6
|
* @author Lea Verou
|
5
7
|
*/
|
6
|
-
|
7
8
|
code[class*="language-"],
|
8
9
|
pre[class*="language-"] {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
hyphens: none;
|
10
|
+
color: black;
|
11
|
+
background: none;
|
12
|
+
text-shadow: 0 1px white;
|
13
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
14
|
+
font-size: 1em;
|
15
|
+
text-align: left;
|
16
|
+
white-space: pre;
|
17
|
+
word-spacing: normal;
|
18
|
+
word-break: normal;
|
19
|
+
word-wrap: normal;
|
20
|
+
line-height: 1.5;
|
21
|
+
|
22
|
+
-moz-tab-size: 4;
|
23
|
+
-o-tab-size: 4;
|
24
|
+
tab-size: 4;
|
25
|
+
|
26
|
+
-webkit-hyphens: none;
|
27
|
+
-ms-hyphens: none;
|
28
|
+
hyphens: none;
|
29
29
|
}
|
30
|
-
|
31
30
|
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
32
31
|
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
33
|
-
|
34
|
-
|
32
|
+
text-shadow: none;
|
33
|
+
background: #b3d4fc;
|
34
|
+
}
|
35
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
36
|
+
text-shadow: none;
|
37
|
+
background: #b3d4fc;
|
35
38
|
}
|
36
|
-
|
37
39
|
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
38
40
|
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
39
|
-
|
40
|
-
|
41
|
+
text-shadow: none;
|
42
|
+
background: #b3d4fc;
|
41
43
|
}
|
42
|
-
|
43
44
|
@media print {
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
code[class*="language-"],
|
46
|
+
pre[class*="language-"] {
|
47
|
+
text-shadow: none;
|
48
|
+
}
|
48
49
|
}
|
49
|
-
|
50
50
|
/* Code blocks */
|
51
|
-
|
52
51
|
pre[class*="language-"] {
|
53
|
-
|
54
|
-
|
55
|
-
|
52
|
+
padding: 1em;
|
53
|
+
margin: .5em 0;
|
54
|
+
overflow: auto;
|
56
55
|
}
|
57
|
-
|
58
56
|
:not(pre) > code[class*="language-"],
|
59
57
|
pre[class*="language-"] {
|
60
|
-
|
58
|
+
background: #f5f2f0;
|
61
59
|
}
|
62
|
-
|
63
60
|
/* Inline code */
|
64
|
-
|
65
61
|
:not(pre) > code[class*="language-"] {
|
66
|
-
|
67
|
-
|
68
|
-
|
62
|
+
padding: .1em;
|
63
|
+
border-radius: .3em;
|
64
|
+
white-space: normal;
|
69
65
|
}
|
70
|
-
|
71
66
|
.token.comment,
|
72
67
|
.token.prolog,
|
73
68
|
.token.doctype,
|
74
69
|
.token.cdata {
|
75
|
-
|
70
|
+
color: slategray;
|
76
71
|
}
|
77
|
-
|
78
72
|
.token.punctuation {
|
79
|
-
|
73
|
+
color: #999;
|
80
74
|
}
|
81
|
-
|
82
|
-
.
|
83
|
-
opacity: .7;
|
75
|
+
.token.namespace {
|
76
|
+
opacity: .7;
|
84
77
|
}
|
85
|
-
|
86
78
|
.token.property,
|
87
79
|
.token.tag,
|
88
80
|
.token.boolean,
|
@@ -90,52 +82,47 @@ pre[class*="language-"] {
|
|
90
82
|
.token.constant,
|
91
83
|
.token.symbol,
|
92
84
|
.token.deleted {
|
93
|
-
|
85
|
+
color: #905;
|
94
86
|
}
|
95
|
-
|
96
87
|
.token.selector,
|
97
88
|
.token.attr-name,
|
98
89
|
.token.string,
|
99
90
|
.token.char,
|
100
91
|
.token.builtin,
|
101
92
|
.token.inserted {
|
102
|
-
|
93
|
+
color: #690;
|
103
94
|
}
|
104
|
-
|
105
95
|
.token.operator,
|
106
96
|
.token.entity,
|
107
97
|
.token.url,
|
108
98
|
.language-css .token.string,
|
109
99
|
.style .token.string {
|
110
|
-
|
111
|
-
|
100
|
+
color: #9a6e3a;
|
101
|
+
/* This background color was intended by the author of this theme. */
|
102
|
+
background: hsla(0, 0%, 100%, .5);
|
112
103
|
}
|
113
|
-
|
114
104
|
.token.atrule,
|
115
105
|
.token.attr-value,
|
116
106
|
.token.keyword {
|
117
|
-
|
107
|
+
color: #07a;
|
118
108
|
}
|
119
|
-
|
120
|
-
.token.
|
121
|
-
|
109
|
+
.token.function,
|
110
|
+
.token.class-name {
|
111
|
+
color: #DD4A68;
|
122
112
|
}
|
123
|
-
|
124
113
|
.token.regex,
|
125
114
|
.token.important,
|
126
115
|
.token.variable {
|
127
|
-
|
116
|
+
color: #e90;
|
128
117
|
}
|
129
|
-
|
130
118
|
.token.important,
|
131
119
|
.token.bold {
|
132
|
-
|
120
|
+
font-weight: bold;
|
133
121
|
}
|
134
|
-
|
135
122
|
.token.italic {
|
136
|
-
|
123
|
+
font-style: italic;
|
137
124
|
}
|
138
|
-
|
139
125
|
.token.entity {
|
140
|
-
|
126
|
+
cursor: help;
|
141
127
|
}
|
128
|
+
|
data/lib/guide/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luke Arndt
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-06-
|
13
|
+
date: 2021-06-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: railties
|
@@ -230,11 +230,11 @@ licenses:
|
|
230
230
|
- MIT
|
231
231
|
metadata:
|
232
232
|
homepage_uri: https://github.com/envato/guide
|
233
|
-
source_code_uri: https://github.com/envato/guide/tree/v0.
|
233
|
+
source_code_uri: https://github.com/envato/guide/tree/v0.8.0
|
234
234
|
changelog_uri: https://github.com/envato/guide/blob/HEAD/CHANGELOG.md
|
235
235
|
bug_tracker_uri: https://github.com/envato/guide/issues
|
236
236
|
wiki_uri: https://github.com/envato/guide/wiki
|
237
|
-
documentation_uri: https://www.rubydoc.info/gems/guide/0.
|
237
|
+
documentation_uri: https://www.rubydoc.info/gems/guide/0.8.0
|
238
238
|
post_install_message:
|
239
239
|
rdoc_options: []
|
240
240
|
require_paths:
|
@@ -250,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
250
|
- !ruby/object:Gem::Version
|
251
251
|
version: '0'
|
252
252
|
requirements: []
|
253
|
-
rubygems_version: 3.2.
|
253
|
+
rubygems_version: 3.2.20
|
254
254
|
signing_key:
|
255
255
|
specification_version: 4
|
256
256
|
summary: Living documentation for your Rails application
|