style_guide 0.0.1
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 +7 -0
- data/.gitignore +8 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +92 -0
- data/MIT-LICENSE +20 -0
- data/README.md +91 -0
- data/Rakefile +34 -0
- data/app/assets/images/style_guide/.keep +0 -0
- data/app/assets/javascripts/style_guides.js +97 -0
- data/app/assets/javascripts/style_guides_plugins.js +31 -0
- data/app/assets/stylesheets/style.css +116 -0
- data/app/assets/stylesheets/style_guides.css +405 -0
- data/app/controllers/.keep +0 -0
- data/app/controllers/style_guide_controller.rb +16 -0
- data/app/helpers/.keep +0 -0
- data/app/helpers/style_guide_helper.rb +28 -0
- data/app/mailers/.keep +0 -0
- data/app/models/.keep +0 -0
- data/app/views/.keep +0 -0
- data/app/views/layouts/style_guide.html.erb +25 -0
- data/app/views/style_guide/index.html.erb +105 -0
- data/bin/rails +12 -0
- data/config/routes.rb +4 -0
- data/lib/assets/.keep +0 -0
- data/lib/assets/style_guide/doc/base/address.html +1 -0
- data/lib/assets/style_guide/doc/base/blockquote.html +1 -0
- data/lib/assets/style_guide/doc/base/details.html +1 -0
- data/lib/assets/style_guide/doc/base/figure.html +1 -0
- data/lib/assets/style_guide/doc/base/form-buttons.html +1 -0
- data/lib/assets/style_guide/doc/base/form-fields-default.html +1 -0
- data/lib/assets/style_guide/doc/base/form-fields-disabled.html +1 -0
- data/lib/assets/style_guide/doc/base/form-fields-readonly.html +1 -0
- data/lib/assets/style_guide/doc/base/form-fields-with-datalist.html +1 -0
- data/lib/assets/style_guide/doc/base/form-fieldset.html +1 -0
- data/lib/assets/style_guide/doc/base/headings-1.html +1 -0
- data/lib/assets/style_guide/doc/base/headings-2.html +1 -0
- data/lib/assets/style_guide/doc/base/headings-3.html +1 -0
- data/lib/assets/style_guide/doc/base/hr.html +1 -0
- data/lib/assets/style_guide/doc/base/list-definition.html +1 -0
- data/lib/assets/style_guide/doc/base/list-ordered.html +1 -0
- data/lib/assets/style_guide/doc/base/list-unordered.html +1 -0
- data/lib/assets/style_guide/doc/base/media.html +1 -0
- data/lib/assets/style_guide/doc/base/meter-and-progress.html +1 -0
- data/lib/assets/style_guide/doc/base/preformated-text.html +1 -0
- data/lib/assets/style_guide/doc/base/sample-content-block.html +1 -0
- data/lib/assets/style_guide/doc/base/tabular-data.html +1 -0
- data/lib/assets/style_guide/doc/base/text-elements.html +1 -0
- data/lib/assets/style_guide/doc/base/time.html +1 -0
- data/lib/assets/style_guide/doc/patterns/alerts.html +1 -0
- data/lib/assets/style_guide/doc/patterns/breadcrumbs.html +1 -0
- data/lib/assets/style_guide/markup/base/address.html +6 -0
- data/lib/assets/style_guide/markup/base/blockquote.html +5 -0
- data/lib/assets/style_guide/markup/base/details.html +30 -0
- data/lib/assets/style_guide/markup/base/figure.html +12 -0
- data/lib/assets/style_guide/markup/base/form-buttons.html +13 -0
- data/lib/assets/style_guide/markup/base/form-fields-default.html +41 -0
- data/lib/assets/style_guide/markup/base/form-fields-disabled.html +13 -0
- data/lib/assets/style_guide/markup/base/form-fields-readonly.html +9 -0
- data/lib/assets/style_guide/markup/base/form-fields-with-datalist.html +94 -0
- data/lib/assets/style_guide/markup/base/form-fieldset.html +19 -0
- data/lib/assets/style_guide/markup/base/headings-1.html +6 -0
- data/lib/assets/style_guide/markup/base/headings-2.html +8 -0
- data/lib/assets/style_guide/markup/base/headings-3.html +8 -0
- data/lib/assets/style_guide/markup/base/hr.html +1 -0
- data/lib/assets/style_guide/markup/base/list-definition.html +10 -0
- data/lib/assets/style_guide/markup/base/list-ordered.html +18 -0
- data/lib/assets/style_guide/markup/base/list-unordered.html +18 -0
- data/lib/assets/style_guide/markup/base/media.html +36 -0
- data/lib/assets/style_guide/markup/base/meter-and-progress.html +11 -0
- data/lib/assets/style_guide/markup/base/preformated-text.html +18 -0
- data/lib/assets/style_guide/markup/base/sample-content-block.html +17 -0
- data/lib/assets/style_guide/markup/base/tabular-data.html +68 -0
- data/lib/assets/style_guide/markup/base/text-elements.html +23 -0
- data/lib/assets/style_guide/markup/base/time.html +1 -0
- data/lib/assets/style_guide/markup/patterns/alerts.html +16 -0
- data/lib/assets/style_guide/markup/patterns/breadcrumbs.html +6 -0
- data/lib/style_guide/engine.rb +11 -0
- data/lib/style_guide/version.rb +3 -0
- data/lib/style_guide.rb +7 -0
- data/lib/tasks/style_guide_tasks.rake +4 -0
- data/style_guide.gemspec +26 -0
- data/test/controllers/style_guide_controller_test.rb +7 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.keep +0 -0
- data/test/dummy/app/models/.keep +0 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +82 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/log/development.log +3212 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/004eafe024778b45bd76b68aaba4ac15 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/02b9d9c6edce2d06f23d37980b4ee800 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/077546dcfe9730fd178069bbd08aabcd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/12cfd2d3d39780df1fa5a909e8d44377 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/146550a0272c7c23525da1a6bae7129c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1a165ceceb0f8a97466552db5a2e9117 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2cf006db500529f607744ffa0f89471c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/32a1ac63db3780b8a111e5485be56982 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4e4e3e3a5771df9cae4d26bc6baf46c7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/58173999e48afe09e8884356c79609f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/68e2d01c68da66c13b0d9e1476d859d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7db7b6b32d1463ec5d4d358ad5e016cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/81de5a8f8e9be0339dc42a8d3478ef61 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8b14c1fcb69f343941b217e79224b573 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a74b3d31d1ee9251adb48ec3f6b692db +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c080f0d6d4225e1a2e99b5f69ab934f8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c5ae04ae7418d8ea47212cf5f39ad45c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cb475082e4e87eebe72cca39328e75fc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e70c6cc21a053bd60db4b0b2751a3842 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f13b97266d7293a648da96110bd0828d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f39c3d50409be057fc18747ecf424bf0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f6d4686b27f2d3d964bf69c90a281e75 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/faf31f12c745fa3dfaa9180a7f6fb546 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fb37ec5c5023032c53cd43bed0105798 +0 -0
- data/test/helpers/style_guide_helper_test.rb +4 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/style_guide_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +302 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/404.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/422.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
63
|
+
</div>
|
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
65
|
+
</div>
|
|
66
|
+
</body>
|
|
67
|
+
</html>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
6
|
+
<style>
|
|
7
|
+
body {
|
|
8
|
+
background-color: #EFEFEF;
|
|
9
|
+
color: #2E2F30;
|
|
10
|
+
text-align: center;
|
|
11
|
+
font-family: arial, sans-serif;
|
|
12
|
+
margin: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.dialog {
|
|
16
|
+
width: 95%;
|
|
17
|
+
max-width: 33em;
|
|
18
|
+
margin: 4em auto 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.dialog > div {
|
|
22
|
+
border: 1px solid #CCC;
|
|
23
|
+
border-right-color: #999;
|
|
24
|
+
border-left-color: #999;
|
|
25
|
+
border-bottom-color: #BBB;
|
|
26
|
+
border-top: #B00100 solid 4px;
|
|
27
|
+
border-top-left-radius: 9px;
|
|
28
|
+
border-top-right-radius: 9px;
|
|
29
|
+
background-color: white;
|
|
30
|
+
padding: 7px 12% 0;
|
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 100%;
|
|
36
|
+
color: #730E15;
|
|
37
|
+
line-height: 1.5em;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.dialog > p {
|
|
41
|
+
margin: 0 0 1em;
|
|
42
|
+
padding: 1em;
|
|
43
|
+
background-color: #F7F7F7;
|
|
44
|
+
border: 1px solid #CCC;
|
|
45
|
+
border-right-color: #999;
|
|
46
|
+
border-left-color: #999;
|
|
47
|
+
border-bottom-color: #999;
|
|
48
|
+
border-bottom-left-radius: 4px;
|
|
49
|
+
border-bottom-right-radius: 4px;
|
|
50
|
+
border-top-color: #DADADA;
|
|
51
|
+
color: #666;
|
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
55
|
+
</head>
|
|
56
|
+
|
|
57
|
+
<body>
|
|
58
|
+
<!-- This file lives in public/500.html -->
|
|
59
|
+
<div class="dialog">
|
|
60
|
+
<div>
|
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
62
|
+
</div>
|
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
64
|
+
</div>
|
|
65
|
+
</body>
|
|
66
|
+
</html>
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Configure Rails Environment
|
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
|
3
|
+
|
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
5
|
+
require "rails/test_help"
|
|
6
|
+
|
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
|
8
|
+
|
|
9
|
+
# Load support files
|
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
11
|
+
|
|
12
|
+
# Load fixtures from the engine
|
|
13
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
|
14
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: style_guide
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Joshua Schultz
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-07-22 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.1.4
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.1.4
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sqlite3
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: Style_Guide is a plugin used to append an automated boilerplate resource
|
|
42
|
+
to your rails app allowing you to see/show your style guide. This work is largely
|
|
43
|
+
based off of the idea initiated at https://github.com/bjankord/Style-Guide-Boilerplate
|
|
44
|
+
email:
|
|
45
|
+
- me@joshuaschultz.com
|
|
46
|
+
executables:
|
|
47
|
+
- rails
|
|
48
|
+
extensions: []
|
|
49
|
+
extra_rdoc_files: []
|
|
50
|
+
files:
|
|
51
|
+
- ".gitignore"
|
|
52
|
+
- Gemfile
|
|
53
|
+
- Gemfile.lock
|
|
54
|
+
- MIT-LICENSE
|
|
55
|
+
- README.md
|
|
56
|
+
- Rakefile
|
|
57
|
+
- app/assets/images/style_guide/.keep
|
|
58
|
+
- app/assets/javascripts/style_guides.js
|
|
59
|
+
- app/assets/javascripts/style_guides_plugins.js
|
|
60
|
+
- app/assets/stylesheets/style.css
|
|
61
|
+
- app/assets/stylesheets/style_guides.css
|
|
62
|
+
- app/controllers/.keep
|
|
63
|
+
- app/controllers/style_guide_controller.rb
|
|
64
|
+
- app/helpers/.keep
|
|
65
|
+
- app/helpers/style_guide_helper.rb
|
|
66
|
+
- app/mailers/.keep
|
|
67
|
+
- app/models/.keep
|
|
68
|
+
- app/views/.keep
|
|
69
|
+
- app/views/layouts/style_guide.html.erb
|
|
70
|
+
- app/views/style_guide/index.html.erb
|
|
71
|
+
- bin/rails
|
|
72
|
+
- config/routes.rb
|
|
73
|
+
- lib/assets/.keep
|
|
74
|
+
- lib/assets/style_guide/doc/base/address.html
|
|
75
|
+
- lib/assets/style_guide/doc/base/blockquote.html
|
|
76
|
+
- lib/assets/style_guide/doc/base/details.html
|
|
77
|
+
- lib/assets/style_guide/doc/base/figure.html
|
|
78
|
+
- lib/assets/style_guide/doc/base/form-buttons.html
|
|
79
|
+
- lib/assets/style_guide/doc/base/form-fields-default.html
|
|
80
|
+
- lib/assets/style_guide/doc/base/form-fields-disabled.html
|
|
81
|
+
- lib/assets/style_guide/doc/base/form-fields-readonly.html
|
|
82
|
+
- lib/assets/style_guide/doc/base/form-fields-with-datalist.html
|
|
83
|
+
- lib/assets/style_guide/doc/base/form-fieldset.html
|
|
84
|
+
- lib/assets/style_guide/doc/base/headings-1.html
|
|
85
|
+
- lib/assets/style_guide/doc/base/headings-2.html
|
|
86
|
+
- lib/assets/style_guide/doc/base/headings-3.html
|
|
87
|
+
- lib/assets/style_guide/doc/base/hr.html
|
|
88
|
+
- lib/assets/style_guide/doc/base/list-definition.html
|
|
89
|
+
- lib/assets/style_guide/doc/base/list-ordered.html
|
|
90
|
+
- lib/assets/style_guide/doc/base/list-unordered.html
|
|
91
|
+
- lib/assets/style_guide/doc/base/media.html
|
|
92
|
+
- lib/assets/style_guide/doc/base/meter-and-progress.html
|
|
93
|
+
- lib/assets/style_guide/doc/base/preformated-text.html
|
|
94
|
+
- lib/assets/style_guide/doc/base/sample-content-block.html
|
|
95
|
+
- lib/assets/style_guide/doc/base/tabular-data.html
|
|
96
|
+
- lib/assets/style_guide/doc/base/text-elements.html
|
|
97
|
+
- lib/assets/style_guide/doc/base/time.html
|
|
98
|
+
- lib/assets/style_guide/doc/patterns/alerts.html
|
|
99
|
+
- lib/assets/style_guide/doc/patterns/breadcrumbs.html
|
|
100
|
+
- lib/assets/style_guide/markup/base/address.html
|
|
101
|
+
- lib/assets/style_guide/markup/base/blockquote.html
|
|
102
|
+
- lib/assets/style_guide/markup/base/details.html
|
|
103
|
+
- lib/assets/style_guide/markup/base/figure.html
|
|
104
|
+
- lib/assets/style_guide/markup/base/form-buttons.html
|
|
105
|
+
- lib/assets/style_guide/markup/base/form-fields-default.html
|
|
106
|
+
- lib/assets/style_guide/markup/base/form-fields-disabled.html
|
|
107
|
+
- lib/assets/style_guide/markup/base/form-fields-readonly.html
|
|
108
|
+
- lib/assets/style_guide/markup/base/form-fields-with-datalist.html
|
|
109
|
+
- lib/assets/style_guide/markup/base/form-fieldset.html
|
|
110
|
+
- lib/assets/style_guide/markup/base/headings-1.html
|
|
111
|
+
- lib/assets/style_guide/markup/base/headings-2.html
|
|
112
|
+
- lib/assets/style_guide/markup/base/headings-3.html
|
|
113
|
+
- lib/assets/style_guide/markup/base/hr.html
|
|
114
|
+
- lib/assets/style_guide/markup/base/list-definition.html
|
|
115
|
+
- lib/assets/style_guide/markup/base/list-ordered.html
|
|
116
|
+
- lib/assets/style_guide/markup/base/list-unordered.html
|
|
117
|
+
- lib/assets/style_guide/markup/base/media.html
|
|
118
|
+
- lib/assets/style_guide/markup/base/meter-and-progress.html
|
|
119
|
+
- lib/assets/style_guide/markup/base/preformated-text.html
|
|
120
|
+
- lib/assets/style_guide/markup/base/sample-content-block.html
|
|
121
|
+
- lib/assets/style_guide/markup/base/tabular-data.html
|
|
122
|
+
- lib/assets/style_guide/markup/base/text-elements.html
|
|
123
|
+
- lib/assets/style_guide/markup/base/time.html
|
|
124
|
+
- lib/assets/style_guide/markup/patterns/alerts.html
|
|
125
|
+
- lib/assets/style_guide/markup/patterns/breadcrumbs.html
|
|
126
|
+
- lib/style_guide.rb
|
|
127
|
+
- lib/style_guide/engine.rb
|
|
128
|
+
- lib/style_guide/version.rb
|
|
129
|
+
- lib/tasks/style_guide_tasks.rake
|
|
130
|
+
- style_guide.gemspec
|
|
131
|
+
- test/controllers/style_guide_controller_test.rb
|
|
132
|
+
- test/dummy/README.rdoc
|
|
133
|
+
- test/dummy/Rakefile
|
|
134
|
+
- test/dummy/app/assets/images/.keep
|
|
135
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
136
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
137
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
138
|
+
- test/dummy/app/controllers/concerns/.keep
|
|
139
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
140
|
+
- test/dummy/app/mailers/.keep
|
|
141
|
+
- test/dummy/app/models/.keep
|
|
142
|
+
- test/dummy/app/models/concerns/.keep
|
|
143
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
144
|
+
- test/dummy/bin/bundle
|
|
145
|
+
- test/dummy/bin/rails
|
|
146
|
+
- test/dummy/bin/rake
|
|
147
|
+
- test/dummy/config.ru
|
|
148
|
+
- test/dummy/config/application.rb
|
|
149
|
+
- test/dummy/config/boot.rb
|
|
150
|
+
- test/dummy/config/database.yml
|
|
151
|
+
- test/dummy/config/environment.rb
|
|
152
|
+
- test/dummy/config/environments/development.rb
|
|
153
|
+
- test/dummy/config/environments/production.rb
|
|
154
|
+
- test/dummy/config/environments/test.rb
|
|
155
|
+
- test/dummy/config/initializers/assets.rb
|
|
156
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
157
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
|
158
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
159
|
+
- test/dummy/config/initializers/inflections.rb
|
|
160
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
161
|
+
- test/dummy/config/initializers/session_store.rb
|
|
162
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
163
|
+
- test/dummy/config/locales/en.yml
|
|
164
|
+
- test/dummy/config/routes.rb
|
|
165
|
+
- test/dummy/config/secrets.yml
|
|
166
|
+
- test/dummy/db/development.sqlite3
|
|
167
|
+
- test/dummy/lib/assets/.keep
|
|
168
|
+
- test/dummy/log/.keep
|
|
169
|
+
- test/dummy/log/development.log
|
|
170
|
+
- test/dummy/public/404.html
|
|
171
|
+
- test/dummy/public/422.html
|
|
172
|
+
- test/dummy/public/500.html
|
|
173
|
+
- test/dummy/public/favicon.ico
|
|
174
|
+
- test/dummy/tmp/cache/assets/development/sprockets/004eafe024778b45bd76b68aaba4ac15
|
|
175
|
+
- test/dummy/tmp/cache/assets/development/sprockets/02b9d9c6edce2d06f23d37980b4ee800
|
|
176
|
+
- test/dummy/tmp/cache/assets/development/sprockets/077546dcfe9730fd178069bbd08aabcd
|
|
177
|
+
- test/dummy/tmp/cache/assets/development/sprockets/12cfd2d3d39780df1fa5a909e8d44377
|
|
178
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
179
|
+
- test/dummy/tmp/cache/assets/development/sprockets/146550a0272c7c23525da1a6bae7129c
|
|
180
|
+
- test/dummy/tmp/cache/assets/development/sprockets/1a165ceceb0f8a97466552db5a2e9117
|
|
181
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2cf006db500529f607744ffa0f89471c
|
|
182
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
|
183
|
+
- test/dummy/tmp/cache/assets/development/sprockets/32a1ac63db3780b8a111e5485be56982
|
|
184
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
185
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4e4e3e3a5771df9cae4d26bc6baf46c7
|
|
186
|
+
- test/dummy/tmp/cache/assets/development/sprockets/58173999e48afe09e8884356c79609f3
|
|
187
|
+
- test/dummy/tmp/cache/assets/development/sprockets/68e2d01c68da66c13b0d9e1476d859d6
|
|
188
|
+
- test/dummy/tmp/cache/assets/development/sprockets/7db7b6b32d1463ec5d4d358ad5e016cd
|
|
189
|
+
- test/dummy/tmp/cache/assets/development/sprockets/81de5a8f8e9be0339dc42a8d3478ef61
|
|
190
|
+
- test/dummy/tmp/cache/assets/development/sprockets/8b14c1fcb69f343941b217e79224b573
|
|
191
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a74b3d31d1ee9251adb48ec3f6b692db
|
|
192
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c080f0d6d4225e1a2e99b5f69ab934f8
|
|
193
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c5ae04ae7418d8ea47212cf5f39ad45c
|
|
194
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cb475082e4e87eebe72cca39328e75fc
|
|
195
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
|
196
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
197
|
+
- test/dummy/tmp/cache/assets/development/sprockets/e70c6cc21a053bd60db4b0b2751a3842
|
|
198
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f13b97266d7293a648da96110bd0828d
|
|
199
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f39c3d50409be057fc18747ecf424bf0
|
|
200
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f6d4686b27f2d3d964bf69c90a281e75
|
|
201
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
|
202
|
+
- test/dummy/tmp/cache/assets/development/sprockets/faf31f12c745fa3dfaa9180a7f6fb546
|
|
203
|
+
- test/dummy/tmp/cache/assets/development/sprockets/fb37ec5c5023032c53cd43bed0105798
|
|
204
|
+
- test/helpers/style_guide_helper_test.rb
|
|
205
|
+
- test/integration/navigation_test.rb
|
|
206
|
+
- test/style_guide_test.rb
|
|
207
|
+
- test/test_helper.rb
|
|
208
|
+
homepage: http://quiet-citadel-4316.herokuapp.com/style_guides/index
|
|
209
|
+
licenses:
|
|
210
|
+
- MIT
|
|
211
|
+
metadata: {}
|
|
212
|
+
post_install_message:
|
|
213
|
+
rdoc_options: []
|
|
214
|
+
require_paths:
|
|
215
|
+
- lib
|
|
216
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
|
+
requirements:
|
|
218
|
+
- - ">="
|
|
219
|
+
- !ruby/object:Gem::Version
|
|
220
|
+
version: '0'
|
|
221
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
|
+
requirements:
|
|
223
|
+
- - ">="
|
|
224
|
+
- !ruby/object:Gem::Version
|
|
225
|
+
version: '0'
|
|
226
|
+
requirements: []
|
|
227
|
+
rubyforge_project:
|
|
228
|
+
rubygems_version: 2.2.2
|
|
229
|
+
signing_key:
|
|
230
|
+
specification_version: 4
|
|
231
|
+
summary: Rails-based Style Guide Plugin
|
|
232
|
+
test_files:
|
|
233
|
+
- test/controllers/style_guide_controller_test.rb
|
|
234
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
235
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
236
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
237
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
238
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
239
|
+
- test/dummy/bin/bundle
|
|
240
|
+
- test/dummy/bin/rails
|
|
241
|
+
- test/dummy/bin/rake
|
|
242
|
+
- test/dummy/config/application.rb
|
|
243
|
+
- test/dummy/config/boot.rb
|
|
244
|
+
- test/dummy/config/database.yml
|
|
245
|
+
- test/dummy/config/environment.rb
|
|
246
|
+
- test/dummy/config/environments/development.rb
|
|
247
|
+
- test/dummy/config/environments/production.rb
|
|
248
|
+
- test/dummy/config/environments/test.rb
|
|
249
|
+
- test/dummy/config/initializers/assets.rb
|
|
250
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
251
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
|
252
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
253
|
+
- test/dummy/config/initializers/inflections.rb
|
|
254
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
255
|
+
- test/dummy/config/initializers/session_store.rb
|
|
256
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
257
|
+
- test/dummy/config/locales/en.yml
|
|
258
|
+
- test/dummy/config/routes.rb
|
|
259
|
+
- test/dummy/config/secrets.yml
|
|
260
|
+
- test/dummy/config.ru
|
|
261
|
+
- test/dummy/db/development.sqlite3
|
|
262
|
+
- test/dummy/log/development.log
|
|
263
|
+
- test/dummy/public/404.html
|
|
264
|
+
- test/dummy/public/422.html
|
|
265
|
+
- test/dummy/public/500.html
|
|
266
|
+
- test/dummy/public/favicon.ico
|
|
267
|
+
- test/dummy/Rakefile
|
|
268
|
+
- test/dummy/README.rdoc
|
|
269
|
+
- test/dummy/tmp/cache/assets/development/sprockets/004eafe024778b45bd76b68aaba4ac15
|
|
270
|
+
- test/dummy/tmp/cache/assets/development/sprockets/02b9d9c6edce2d06f23d37980b4ee800
|
|
271
|
+
- test/dummy/tmp/cache/assets/development/sprockets/077546dcfe9730fd178069bbd08aabcd
|
|
272
|
+
- test/dummy/tmp/cache/assets/development/sprockets/12cfd2d3d39780df1fa5a909e8d44377
|
|
273
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
274
|
+
- test/dummy/tmp/cache/assets/development/sprockets/146550a0272c7c23525da1a6bae7129c
|
|
275
|
+
- test/dummy/tmp/cache/assets/development/sprockets/1a165ceceb0f8a97466552db5a2e9117
|
|
276
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2cf006db500529f607744ffa0f89471c
|
|
277
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
|
278
|
+
- test/dummy/tmp/cache/assets/development/sprockets/32a1ac63db3780b8a111e5485be56982
|
|
279
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
280
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4e4e3e3a5771df9cae4d26bc6baf46c7
|
|
281
|
+
- test/dummy/tmp/cache/assets/development/sprockets/58173999e48afe09e8884356c79609f3
|
|
282
|
+
- test/dummy/tmp/cache/assets/development/sprockets/68e2d01c68da66c13b0d9e1476d859d6
|
|
283
|
+
- test/dummy/tmp/cache/assets/development/sprockets/7db7b6b32d1463ec5d4d358ad5e016cd
|
|
284
|
+
- test/dummy/tmp/cache/assets/development/sprockets/81de5a8f8e9be0339dc42a8d3478ef61
|
|
285
|
+
- test/dummy/tmp/cache/assets/development/sprockets/8b14c1fcb69f343941b217e79224b573
|
|
286
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a74b3d31d1ee9251adb48ec3f6b692db
|
|
287
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c080f0d6d4225e1a2e99b5f69ab934f8
|
|
288
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c5ae04ae7418d8ea47212cf5f39ad45c
|
|
289
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cb475082e4e87eebe72cca39328e75fc
|
|
290
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
|
291
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
292
|
+
- test/dummy/tmp/cache/assets/development/sprockets/e70c6cc21a053bd60db4b0b2751a3842
|
|
293
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f13b97266d7293a648da96110bd0828d
|
|
294
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f39c3d50409be057fc18747ecf424bf0
|
|
295
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f6d4686b27f2d3d964bf69c90a281e75
|
|
296
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
|
297
|
+
- test/dummy/tmp/cache/assets/development/sprockets/faf31f12c745fa3dfaa9180a7f6fb546
|
|
298
|
+
- test/dummy/tmp/cache/assets/development/sprockets/fb37ec5c5023032c53cd43bed0105798
|
|
299
|
+
- test/helpers/style_guide_helper_test.rb
|
|
300
|
+
- test/integration/navigation_test.rb
|
|
301
|
+
- test/style_guide_test.rb
|
|
302
|
+
- test/test_helper.rb
|