forever_style_guide 1.2.5 → 1.2.7
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/app/assets/javascripts/forever_style_guide/hero-blur.js +91 -82
- data/app/assets/javascripts/forever_style_guide/list-toggle.js +13 -3
- data/app/assets/stylesheets/forever_style_guide/modules/_all.scss +2 -0
- data/app/assets/stylesheets/forever_style_guide/modules/_button.scss +9 -0
- data/app/assets/stylesheets/forever_style_guide/modules/_hero-block.scss +82 -0
- data/app/assets/stylesheets/forever_style_guide/modules/_hero-blur.scss +6 -117
- data/app/assets/stylesheets/forever_style_guide/modules/_hero-product.scss +25 -0
- data/app/assets/stylesheets/forever_style_guide/modules/_list-toggle.scss +65 -51
- data/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss +0 -1
- data/app/assets/stylesheets/style_guide/modules/_hero.scss +0 -1
- data/app/views/forever_style_guide/demo/hero.html.erb +34 -36
- data/app/views/forever_style_guide/sections/components/navigation/_marketing.erb +4 -4
- data/app/views/forever_style_guide/sections/components/navigation/_marketing_signed_in.erb +4 -4
- data/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb +3 -3
- data/app/views/forever_style_guide/sections/visual_elements/_lists.erb +21 -14
- data/app/views/layouts/forever_style_guide/application.html.erb +1 -0
- data/lib/forever_style_guide/version.rb +1 -1
- data/test/dummy/log/development.log +0 -2278
- data/test/dummy/tmp/cache/assets/development/sass/dd1921659855a833d5890e93d4cd32dbc61db883/_account-popover.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/dd1921659855a833d5890e93d4cd32dbc61db883/_button.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/dd1921659855a833d5890e93d4cd32dbc61db883/_navbar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/dd1921659855a833d5890e93d4cd32dbc61db883/_progress.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/10a3ce43661397b1fed56c5ca3a6d60b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/12c0806af25f2b17820ce1f57439a16a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/14b0aa11ee9e6b4403ddaa9c0d645c3a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1e488c008a38171751adf4fcb57920c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2aed35dce4d1300130b3c88e3ec277dc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/62c0fcea9dea24a1efb32efc9e2b88d0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/83c70d9c6c54783bff8af85d23407e45 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9b9ffa930501c611d937378f17fd517a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b06f6f5e781a231832862902e1462ec6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b32aed92b74b92426cbca5b3122c5555 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d47d8ba86041e0f208b6ff850d607e27 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ee4e22ea1e854ce810455fec329e4c38 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -1
- metadata +4 -2
@@ -0,0 +1,25 @@
|
|
1
|
+
.hero-product-logo {
|
2
|
+
margin-left: 0;
|
3
|
+
padding-top: 40px;
|
4
|
+
|
5
|
+
@media (max-width: $screen-sm) {
|
6
|
+
position: relative;
|
7
|
+
padding: 0;
|
8
|
+
margin: auto;
|
9
|
+
width: 100%;
|
10
|
+
max-width: 500px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.hero-product-details {
|
14
|
+
font-size: font-size(500);
|
15
|
+
padding: 30px 10px;
|
16
|
+
|
17
|
+
@media (max-width: $screen-sm) {
|
18
|
+
font-size: font-size(400);
|
19
|
+
padding: 20px 0;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
.hero-product-logo-block {
|
24
|
+
height: 100px;
|
25
|
+
}
|
@@ -1,57 +1,47 @@
|
|
1
|
+
$toggle-list-bg: color('white');
|
2
|
+
|
1
3
|
.list-group-toggle {
|
2
|
-
font-size: font-size(
|
4
|
+
font-size: font-size(300);
|
3
5
|
|
4
|
-
.
|
5
|
-
|
6
|
-
|
7
|
-
font-size: font-size('default');
|
6
|
+
.list-group-toggle-trigger {
|
7
|
+
padding: 2px 10px 6px;
|
8
|
+
float: right;
|
8
9
|
color: color('gray-500');
|
9
|
-
|
10
|
-
|
10
|
+
font-size: font-size('small');
|
11
|
+
background-color: $toggle-list-bg;
|
12
|
+
box-shadow: none;
|
11
13
|
|
12
14
|
&:hover {
|
13
15
|
color: color('secondary');
|
14
16
|
cursor: pointer;
|
15
|
-
background-color:
|
17
|
+
background-color: $toggle-list-bg;
|
16
18
|
}
|
17
|
-
&.is-open,
|
18
19
|
&:focus,
|
19
20
|
&:active {
|
20
|
-
background-color:
|
21
|
-
|
21
|
+
background-color: $toggle-list-bg;
|
22
|
+
box-shadow: none;
|
22
23
|
}
|
23
24
|
}
|
24
25
|
.list-group-item {
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
background-color: color('gray-100');
|
29
|
-
border-color: color('gray-400');
|
30
|
-
border-left: 4px solid color('primary');
|
26
|
+
padding: 5px;
|
27
|
+
background-color: $toggle-list-bg;
|
28
|
+
border-color: color('gray-300') $toggle-list-bg $toggle-list-bg;
|
31
29
|
|
32
|
-
|
33
|
-
|
34
|
-
padding-top: 5px;
|
35
|
-
color: color('gray-600');
|
30
|
+
&:last-child {
|
31
|
+
border-bottom-color: color('gray-300');
|
36
32
|
}
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
}
|
42
|
-
.badge {
|
43
|
-
color: color('gray-500');
|
33
|
+
}
|
34
|
+
.list-group-item.is_active {
|
35
|
+
border-right-color: color('gray-300');
|
36
|
+
border-left: 2px solid color('primary');
|
44
37
|
|
45
|
-
|
46
|
-
|
47
|
-
}
|
38
|
+
&:hover {
|
39
|
+
background-color: $toggle-list-bg;
|
48
40
|
}
|
49
41
|
}
|
50
42
|
.list-group-link {
|
51
43
|
display: inline-block;
|
52
|
-
padding
|
53
|
-
padding-bottom: 0;
|
54
|
-
padding-left: 0;
|
44
|
+
padding: 0;
|
55
45
|
color: color('secondary');
|
56
46
|
border: 0;
|
57
47
|
|
@@ -63,24 +53,48 @@
|
|
63
53
|
background: none;
|
64
54
|
text-shadow: none;
|
65
55
|
}
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
@include transition(max-height 0.3s ease-in-out, margin-top 0.2s ease-in-out, opacity 0.2s ease-in-out);
|
56
|
+
&.list-group-link-is_active {
|
57
|
+
display: inline-block;
|
58
|
+
padding: $padding-xs-vertical $padding-xs-horizontal;
|
59
|
+
color: color('white');
|
60
|
+
background-color: color('secondary');
|
61
|
+
border-color: color('gray-300');
|
62
|
+
border-radius: $border-radius-large;
|
74
63
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
64
|
+
&:hover,
|
65
|
+
&:focus,
|
66
|
+
&:active,
|
67
|
+
&:active:focus {
|
68
|
+
color: color('white');
|
69
|
+
background-color: color('secondary');
|
70
|
+
text-decoration: none;
|
71
|
+
}
|
72
|
+
.fa {
|
73
|
+
padding-left: $padding-small-horizontal;
|
74
|
+
}
|
75
|
+
}
|
82
76
|
}
|
83
|
-
.list-group-item
|
84
|
-
|
77
|
+
.list-group-item-child {
|
78
|
+
max-height: 0;
|
79
|
+
margin-top: 0;
|
80
|
+
overflow: hidden;
|
81
|
+
opacity: 0.8;
|
82
|
+
@include transition(max-height 0.3s ease-in-out, margin-top 0.2s ease-in-out, opacity 0.2s ease-in-out);
|
83
|
+
|
84
|
+
&.is_open {
|
85
|
+
max-height: 300px; // may need adjusted given list length
|
86
|
+
opacity: 1.0;
|
87
|
+
}
|
88
|
+
.list-group-item {
|
89
|
+
padding-left: 10px;
|
90
|
+
border: 0;
|
91
|
+
}
|
92
|
+
.list-group-item.is_active {
|
93
|
+
border: 0;
|
94
|
+
}
|
95
|
+
.list-group-link-is_active {
|
96
|
+
margin-left: -$padding-xs-horizontal;
|
97
|
+
}
|
85
98
|
}
|
86
99
|
}
|
100
|
+
|
@@ -1,22 +1,20 @@
|
|
1
1
|
<div class="clearfix l-padded"></div>
|
2
2
|
|
3
|
-
<div
|
4
|
-
<div>
|
5
|
-
<div class="
|
6
|
-
<div class=
|
7
|
-
<div
|
8
|
-
<
|
9
|
-
|
10
|
-
<div class="
|
11
|
-
<
|
12
|
-
<h3 class="hero-block-description page-title">And then you can use the hero-block-description to elaborate on why this page is going to be just what you needed!</h3>
|
13
|
-
</div>
|
14
|
-
</div>
|
15
|
-
<div class="l-section-close">
|
16
|
-
<%= link_to 'Primary Call-To-Action', '#', class: 'js-signup-intro btn btn-primary btn-lg hero-block-cta hero-block-cta-justified l-section-close', title: 'Primary Call-To-Action' %>
|
17
|
-
<%= link_to 'Secondary CTA', '#', class: 'btn btn-secondary btn-lg hero-block-cta hero-block-cta-justified l-section-close', title: "Secondary Call-To-Action" %>
|
3
|
+
<div class="hero hero-sample hero-blur">
|
4
|
+
<div class="row">
|
5
|
+
<div class="col-md-12">
|
6
|
+
<div class='text-center'>
|
7
|
+
<div class="hero-block hero-block-blur">
|
8
|
+
<h1 class="hero-block-title">Hero-Blur! w/ .hero-block-title.</h1>
|
9
|
+
<div class="row">
|
10
|
+
<div class="col-md-6 col-md-offset-3">
|
11
|
+
<h3 class="hero-block-description page-title">And then you can use the hero-block-description to elaborate on why this page is going to be just what you needed!</h3>
|
18
12
|
</div>
|
19
13
|
</div>
|
14
|
+
<div class="l-section-close">
|
15
|
+
<%= link_to 'Primary Call-To-Action', '#', class: 'js-signup-intro btn btn-primary btn-lg hero-block-cta hero-block-cta-justified l-section-close', title: 'Primary Call-To-Action' %>
|
16
|
+
<%= link_to 'Secondary CTA', '#', class: 'btn btn-secondary btn-lg hero-block-cta hero-block-cta-justified l-section-close', title: "Secondary Call-To-Action" %>
|
17
|
+
</div>
|
20
18
|
</div>
|
21
19
|
</div>
|
22
20
|
</div>
|
@@ -25,15 +23,14 @@
|
|
25
23
|
|
26
24
|
<div class="clearfix l-padded"></div>
|
27
25
|
|
28
|
-
<div
|
29
|
-
<div class="container-fluid">
|
26
|
+
<div class="hero hero-sample hero-blur">
|
30
27
|
<div class="row">
|
31
28
|
<div class="col-md-12">
|
32
|
-
<div class="hero-block hero-blur
|
29
|
+
<div class="hero-block hero-block-blur hero-block-side">
|
33
30
|
<%= image_tag "forever_style_guide/artisan-logo.png", class: "hero-product-logo" %>
|
34
31
|
<div class="row">
|
35
32
|
<div class="col-sm-12">
|
36
|
-
<h3 class="hero-block-description">Use a product logo w/ your hero-
|
33
|
+
<h3 class="hero-block-description">Use a product logo w/ your hero-block-blur, just add the hero-product-logo class.</h3>
|
37
34
|
</div>
|
38
35
|
</div>
|
39
36
|
<div class="row l-section hero-block-actions">
|
@@ -51,11 +48,16 @@
|
|
51
48
|
<div class="clearfix l-padded"></div>
|
52
49
|
|
53
50
|
<div class="hero hero-sample">
|
54
|
-
<div class="
|
55
|
-
<div class="
|
56
|
-
<div class="
|
57
|
-
<h1 class="
|
58
|
-
|
51
|
+
<div class="row">
|
52
|
+
<div class="col-md-12">
|
53
|
+
<div class="hero-block hero-block-side">
|
54
|
+
<h1 class="hero-block-title page-title">Combine hero styles.</h1>
|
55
|
+
<h3 class="hero-block-description">Use hero-specific markup as well as Bootstrap and Forever custom styles.</h3>
|
56
|
+
<div class="row hero-block-actions">
|
57
|
+
<div class="col-md-12">
|
58
|
+
<%= link_to 'Include Clear Calls to Action', '#', class: 'btn btn-lg btn-valet btn-block', title: "Include Clear Calls to Action" %>
|
59
|
+
</div>
|
60
|
+
</div>
|
59
61
|
</div>
|
60
62
|
</div>
|
61
63
|
</div>
|
@@ -64,12 +66,10 @@
|
|
64
66
|
<div class="clearfix l-padded"></div>
|
65
67
|
|
66
68
|
<div class="hero hero-sample hero-sm hero-shaded">
|
67
|
-
<div class="
|
68
|
-
<div class="
|
69
|
-
<
|
70
|
-
|
71
|
-
<%= link_to 'Use brand colors for CTAs as appropriate', '#', class: 'btn btn-lg btn-historian l-section', title: "Use brand colors for CTAs as appropriate" %>
|
72
|
-
</div>
|
69
|
+
<div class="row l-padded-thick">
|
70
|
+
<div class="col-sm-6">
|
71
|
+
<h2 class="l-section">Add the .hero-shaded class to add a gradient to the top of the image. Make sure your text is legible against your image at all sizes.</h2>
|
72
|
+
<%= link_to 'Use brand colors for CTAs as appropriate', '#', class: 'btn btn-lg btn-historian l-section', title: "Use brand colors for CTAs as appropriate" %>
|
73
73
|
</div>
|
74
74
|
</div>
|
75
75
|
</div>
|
@@ -77,12 +77,10 @@
|
|
77
77
|
<div class="clearfix l-padded"></div>
|
78
78
|
|
79
79
|
<div class="hero hero-sample hero-xs">
|
80
|
-
<div class="
|
81
|
-
<div class="
|
82
|
-
<
|
83
|
-
|
84
|
-
<%= link_to 'This CTA is wicked persuasive', '#', class: 'btn btn-lg btn-primary l-section-close', title: "This CTA is wicked persuasive" %>
|
85
|
-
</div>
|
80
|
+
<div class="row l-padded-thick">
|
81
|
+
<div class="col-sm-6">
|
82
|
+
<h2 class="l-section-close">Use these styles and your unique hero image to craft a compelling message.</h2>
|
83
|
+
<%= link_to 'This CTA is wicked persuasive', '#', class: 'btn btn-lg btn-primary l-section-close', title: "This CTA is wicked persuasive" %>
|
86
84
|
</div>
|
87
85
|
</div>
|
88
86
|
</div>
|
@@ -131,13 +131,13 @@
|
|
131
131
|
<% end %>
|
132
132
|
</p>
|
133
133
|
<p class="dropdown-menu-more-featured">
|
134
|
-
|
134
|
+
<%= link_to "//www.forever.com/valet", class: 'dropdown-menu-more-link', title: 'Forever Valet' do %>
|
135
135
|
<span class="fa-stack">
|
136
136
|
<i class="fa fa-circle color-gray-600 fa-stack-2x"></i>
|
137
|
-
<i class="fa fa-
|
137
|
+
<i class="fa fa-cloud-upload fa-stack-1x color-white"></i>
|
138
138
|
</span>
|
139
|
-
|
140
|
-
|
139
|
+
Forever Valet
|
140
|
+
<% end %>
|
141
141
|
</p>
|
142
142
|
</div>
|
143
143
|
</div>
|
@@ -131,13 +131,13 @@
|
|
131
131
|
<% end %>
|
132
132
|
</p>
|
133
133
|
<p class="dropdown-menu-more-featured">
|
134
|
-
|
134
|
+
<%= link_to "//www.forever.com/valet", class: 'dropdown-menu-more-link', title: 'Forever Valet' do %>
|
135
135
|
<span class="fa-stack">
|
136
136
|
<i class="fa fa-circle color-gray-600 fa-stack-2x"></i>
|
137
|
-
<i class="fa fa-
|
137
|
+
<i class="fa fa-cloud-upload fa-stack-1x color-white"></i>
|
138
138
|
</span>
|
139
|
-
|
140
|
-
|
139
|
+
Forever Valet
|
140
|
+
<% end %>
|
141
141
|
</p>
|
142
142
|
</div>
|
143
143
|
</div>
|
@@ -83,12 +83,12 @@
|
|
83
83
|
<% end %>
|
84
84
|
</p>
|
85
85
|
<p class="dropdown-menu-more-featured">
|
86
|
-
<%= link_to "//www.
|
86
|
+
<%= link_to "//www.forever.com/valet", class: 'dropdown-menu-more-link', title: 'Forever Valet' do %>
|
87
87
|
<span class="fa-stack">
|
88
88
|
<i class="fa fa-circle color-gray-600 fa-stack-2x"></i>
|
89
|
-
<i class="fa fa-
|
89
|
+
<i class="fa fa-cloud-upload fa-stack-1x color-white"></i>
|
90
90
|
</span>
|
91
|
-
Forever
|
91
|
+
Forever Valet
|
92
92
|
<% end %>
|
93
93
|
</p>
|
94
94
|
</div>
|
@@ -76,14 +76,16 @@
|
|
76
76
|
<label>Toggle List Group</label>
|
77
77
|
<ul class="list-group list-group-toggle">
|
78
78
|
<li class="list-group-item">
|
79
|
-
<a class="list-group-link" href="">Photo Books</a
|
79
|
+
<a class="list-group-link" href="">Photo Books</a>
|
80
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
80
81
|
<ul class="list-group-item-child list-unstyled">
|
81
82
|
<li class="list-group-item"><a class="list-group-link" href="">Hardbound (6)</a></li>
|
82
83
|
<li class="list-group-item"><a class="list-group-link" href="">Softbound (4)</a></li>
|
83
84
|
</ul>
|
84
85
|
</li>
|
85
86
|
<li class="list-group-item">
|
86
|
-
<a class="list-group-link" href="">Cards</a
|
87
|
+
<a class="list-group-link" href="">Cards</a>
|
88
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
87
89
|
<ul class="list-group-item-child list-unstyled">
|
88
90
|
<li class="list-group-item"><a class="list-group-link" href="">Business Cards (1)</a></li>
|
89
91
|
<li class="list-group-item"><a class="list-group-link" href="">Die Cut (3)</a></li>
|
@@ -92,30 +94,34 @@
|
|
92
94
|
<li class="list-group-item"><a class="list-group-link" href="">Folded Cards (4)</a></li>
|
93
95
|
</ul>
|
94
96
|
</li>
|
95
|
-
<li class="list-group-item
|
96
|
-
<
|
97
|
-
<
|
97
|
+
<li class="list-group-item">
|
98
|
+
<a class="list-group-link" href="">Calendars</a>
|
99
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
100
|
+
<ul class="list-group-item-child list-unstyled">
|
98
101
|
<li class="list-group-item"><a class="list-group-link" href="">Desk Calendars (1)</a></li>
|
99
102
|
<li class="list-group-item"><a class="list-group-link" href="">Wall Calendars (3)</a></li>
|
100
103
|
</ul>
|
101
104
|
</li>
|
102
105
|
<li class="list-group-item">
|
103
|
-
<a class="list-group-link" href="">Digital Scrapbooking</a
|
106
|
+
<a class="list-group-link" href="">Digital Scrapbooking</a>
|
107
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
104
108
|
<ul class="list-group-item-child list-unstyled">
|
105
109
|
<li class="list-group-item"><a class="list-group-link" href="">Page Prints (3)</a></li>
|
106
110
|
<li class="list-group-item"><a class="list-group-link" href="">Post Albums (1)</a></li>
|
107
111
|
</ul>
|
108
112
|
</li>
|
109
113
|
<li class="list-group-item">
|
110
|
-
<a class="list-group-link" href="">Wall Art</a
|
114
|
+
<a class="list-group-link" href="">Wall Art</a>
|
115
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
111
116
|
<ul class="list-group-item-child list-unstyled">
|
112
117
|
<li class="list-group-item"><a class="list-group-link" href="">Canvas Prints (7)</a></li>
|
113
|
-
<li class="list-group-item"><
|
118
|
+
<li class="list-group-item"><a class="list-group-link" href="">Metal Prints (12)</a></li>
|
114
119
|
<li class="list-group-item"><a class="list-group-link" href="">Posters (4)</a></li>
|
115
120
|
</ul>
|
116
121
|
</li>
|
117
122
|
<li class="list-group-item">
|
118
|
-
<a class="list-group-link" href="">Mobile Cases</a
|
123
|
+
<a class="list-group-link" href="">Mobile Cases</a>
|
124
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
119
125
|
<ul class="list-group-item-child list-unstyled">
|
120
126
|
<li class="list-group-item"><a class="list-group-link" href="">HTC (1)</a></li>
|
121
127
|
<li class="list-group-item"><a class="list-group-link" href="">iPad (2)</a></li>
|
@@ -123,13 +129,14 @@
|
|
123
129
|
<li class="list-group-item"><a class="list-group-link" href="">Samsung (2)</a></li>
|
124
130
|
</ul>
|
125
131
|
</li>
|
126
|
-
<li class="list-group-item
|
127
|
-
<a class="list-group-link" href="">Photo Gifts</a
|
128
|
-
<
|
132
|
+
<li class="list-group-item">
|
133
|
+
<a class="list-group-link" href="">Photo Gifts</a>
|
134
|
+
<span class="list-group-toggle-trigger"><i class="fa fa-plus"></i></span>
|
135
|
+
<ul class="list-group-item-child list-unstyled">
|
129
136
|
<li class="list-group-item"><a class="list-group-link" href="">CD/DVD Case (1)</a></li>
|
130
137
|
<li class="list-group-item"><a class="list-group-link" href="">Coasters (1)</a></li>
|
131
|
-
<li class="list-group-item
|
132
|
-
<li class="list-group-item"><a class="list-group-link" href="">Mouse Pads (1)</a></li>
|
138
|
+
<li class="list-group-item"><a class="list-group-link list-group-link-is_active" href="">Dog Tags (1)</a></li>
|
139
|
+
<li class="list-group-item"><a class="list-group-link list-group-link-is_active" href="">Mouse Pads (1)</a></li>
|
133
140
|
<li class="list-group-item"><a class="list-group-link" href="">Mugs (1)</a></li>
|
134
141
|
<li class="list-group-item"><a class="list-group-link" href="">Ornaments (5)</a></li>
|
135
142
|
<li class="list-group-item"><a class="list-group-link" href="">Photo T-Shirts (1)</a></li>
|
@@ -8,6 +8,7 @@
|
|
8
8
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
9
9
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
10
10
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
|
11
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
11
12
|
<%= stylesheet_link_tag "style_guide/application", :media => "all" %>
|
12
13
|
<%= stylesheet_link_tag "application", :media => "all" %>
|
13
14
|
<%= csrf_meta_tags %>
|
@@ -572,2281 +572,3 @@ Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10
|
|
572
572
|
|
573
573
|
|
574
574
|
Started GET "/assets/forever_style_guide/check.png" for 127.0.0.1 at 2015-11-10 14:55:12 -0500
|
575
|
-
|
576
|
-
|
577
|
-
Started GET "/style_guide/visual_elements" for 127.0.0.1 at 2015-11-10 14:58:33 -0500
|
578
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
579
|
-
Parameters: {"id"=>"visual_elements"}
|
580
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.2ms)
|
581
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.6ms)
|
582
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_buttons.erb (0.4ms)
|
583
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.6ms)
|
584
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_dropdowns.erb (0.1ms)
|
585
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.3ms)
|
586
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_forms.erb (0.1ms)
|
587
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.6ms)
|
588
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_input_groups.erb (0.2ms)
|
589
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (21.4ms)
|
590
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_lists.erb (0.1ms)
|
591
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.7ms)
|
592
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_progress.erb (0.1ms)
|
593
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.3ms)
|
594
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_headings.erb (0.1ms)
|
595
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_formatting.erb (0.1ms)
|
596
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_styles.erb (0.2ms)
|
597
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_typography.html.erb (13.6ms)
|
598
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (143.6ms)
|
599
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.5ms)
|
600
|
-
Completed 200 OK in 3895ms (Views: 3894.8ms | ActiveRecord: 0.0ms)
|
601
|
-
|
602
|
-
|
603
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
604
|
-
|
605
|
-
|
606
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
607
|
-
|
608
|
-
|
609
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
610
|
-
|
611
|
-
|
612
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
613
|
-
|
614
|
-
|
615
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
616
|
-
|
617
|
-
|
618
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
619
|
-
|
620
|
-
|
621
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
622
|
-
|
623
|
-
|
624
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
625
|
-
|
626
|
-
|
627
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
628
|
-
|
629
|
-
|
630
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
631
|
-
|
632
|
-
|
633
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
634
|
-
|
635
|
-
|
636
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
637
|
-
|
638
|
-
|
639
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
640
|
-
|
641
|
-
|
642
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
643
|
-
|
644
|
-
|
645
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
646
|
-
|
647
|
-
|
648
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
649
|
-
|
650
|
-
|
651
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
652
|
-
|
653
|
-
|
654
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
655
|
-
|
656
|
-
|
657
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
658
|
-
|
659
|
-
|
660
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
661
|
-
|
662
|
-
|
663
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
664
|
-
|
665
|
-
|
666
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
667
|
-
|
668
|
-
|
669
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
670
|
-
|
671
|
-
|
672
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
673
|
-
|
674
|
-
|
675
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
676
|
-
|
677
|
-
|
678
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
679
|
-
|
680
|
-
|
681
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
682
|
-
|
683
|
-
|
684
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
685
|
-
|
686
|
-
|
687
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
688
|
-
|
689
|
-
|
690
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
691
|
-
|
692
|
-
|
693
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
694
|
-
|
695
|
-
|
696
|
-
Started GET "/assets/ProximaNova-Light-webfont.woff" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
697
|
-
|
698
|
-
|
699
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
700
|
-
|
701
|
-
|
702
|
-
Started GET "/assets/forever_style_guide/check.png" for 127.0.0.1 at 2015-11-10 14:58:37 -0500
|
703
|
-
|
704
|
-
|
705
|
-
Started GET "/style_guide/visual_elements" for 127.0.0.1 at 2015-11-10 16:22:15 -0500
|
706
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
707
|
-
Parameters: {"id"=>"visual_elements"}
|
708
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (1.1ms)
|
709
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.9ms)
|
710
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_buttons.erb (1.3ms)
|
711
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (26.4ms)
|
712
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_dropdowns.erb (0.3ms)
|
713
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (22.3ms)
|
714
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_forms.erb (0.4ms)
|
715
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.7ms)
|
716
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_input_groups.erb (1.5ms)
|
717
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (26.9ms)
|
718
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_lists.erb (0.6ms)
|
719
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (22.2ms)
|
720
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_progress.erb (0.3ms)
|
721
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.6ms)
|
722
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_headings.erb (0.3ms)
|
723
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_formatting.erb (0.3ms)
|
724
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_styles.erb (0.5ms)
|
725
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_typography.html.erb (16.9ms)
|
726
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (182.4ms)
|
727
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: green
|
728
|
-
|
729
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: green-light
|
730
|
-
|
731
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: green-dark
|
732
|
-
|
733
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: spare
|
734
|
-
|
735
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: spare-light
|
736
|
-
|
737
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: spare-dark
|
738
|
-
|
739
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: historian
|
740
|
-
|
741
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: historian-light
|
742
|
-
|
743
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: historian-dark
|
744
|
-
|
745
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: valet
|
746
|
-
|
747
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: valet-light
|
748
|
-
|
749
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: valet-dark
|
750
|
-
|
751
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: services
|
752
|
-
|
753
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: services-light
|
754
|
-
|
755
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: services-dark
|
756
|
-
|
757
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: artisan
|
758
|
-
|
759
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: artisan-light
|
760
|
-
|
761
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: artisan-dark
|
762
|
-
|
763
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: blue
|
764
|
-
|
765
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: blue-light
|
766
|
-
|
767
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: blue-dark
|
768
|
-
|
769
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: orange
|
770
|
-
|
771
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: orange-light
|
772
|
-
|
773
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: orange-dark
|
774
|
-
|
775
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: red
|
776
|
-
|
777
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: red-light
|
778
|
-
|
779
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: red-dark
|
780
|
-
|
781
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray
|
782
|
-
|
783
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-light
|
784
|
-
|
785
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-dark
|
786
|
-
|
787
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: silver
|
788
|
-
|
789
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: purple
|
790
|
-
|
791
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: purple-light
|
792
|
-
|
793
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: purple-dark
|
794
|
-
|
795
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: beige
|
796
|
-
|
797
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: white
|
798
|
-
|
799
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-100
|
800
|
-
|
801
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-200
|
802
|
-
|
803
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-300
|
804
|
-
|
805
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-400
|
806
|
-
|
807
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-500
|
808
|
-
|
809
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-600
|
810
|
-
|
811
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-700
|
812
|
-
|
813
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: gray-800
|
814
|
-
|
815
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: black
|
816
|
-
|
817
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: primary
|
818
|
-
|
819
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: primary-light
|
820
|
-
|
821
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: primary-dark
|
822
|
-
|
823
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: secondary
|
824
|
-
|
825
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: secondary-light
|
826
|
-
|
827
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: secondary-dark
|
828
|
-
|
829
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: accent
|
830
|
-
|
831
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: accent-light
|
832
|
-
|
833
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: accent-dark
|
834
|
-
|
835
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: warning
|
836
|
-
|
837
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: warning-light
|
838
|
-
|
839
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: warning-dark
|
840
|
-
|
841
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: danger
|
842
|
-
|
843
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: danger-light
|
844
|
-
|
845
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: danger-dark
|
846
|
-
|
847
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: background
|
848
|
-
|
849
|
-
/Users/nmcclay/Documents/git/forever-style-guide/app/assets/stylesheets/forever_style_guide/utils/_color-utils.scss:26 DEBUG: text
|
850
|
-
|
851
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (3.8ms)
|
852
|
-
Completed 200 OK in 4415ms (Views: 4414.9ms | ActiveRecord: 0.0ms)
|
853
|
-
|
854
|
-
|
855
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
856
|
-
|
857
|
-
|
858
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
859
|
-
|
860
|
-
|
861
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
862
|
-
|
863
|
-
|
864
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
865
|
-
|
866
|
-
|
867
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
868
|
-
|
869
|
-
|
870
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
871
|
-
|
872
|
-
|
873
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
874
|
-
|
875
|
-
|
876
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
877
|
-
|
878
|
-
|
879
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
880
|
-
|
881
|
-
|
882
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
883
|
-
|
884
|
-
|
885
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
886
|
-
|
887
|
-
|
888
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
889
|
-
|
890
|
-
|
891
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
892
|
-
|
893
|
-
|
894
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
895
|
-
|
896
|
-
|
897
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
898
|
-
|
899
|
-
|
900
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
901
|
-
|
902
|
-
|
903
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
904
|
-
|
905
|
-
|
906
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
907
|
-
|
908
|
-
|
909
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
910
|
-
|
911
|
-
|
912
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
913
|
-
|
914
|
-
|
915
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
916
|
-
|
917
|
-
|
918
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
919
|
-
|
920
|
-
|
921
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
922
|
-
|
923
|
-
|
924
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
925
|
-
|
926
|
-
|
927
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
928
|
-
|
929
|
-
|
930
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
931
|
-
|
932
|
-
|
933
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
934
|
-
|
935
|
-
|
936
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
937
|
-
|
938
|
-
|
939
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
940
|
-
|
941
|
-
|
942
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
943
|
-
|
944
|
-
|
945
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
946
|
-
|
947
|
-
|
948
|
-
Started GET "/assets/ProximaNova-Light-webfont.woff" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
949
|
-
|
950
|
-
|
951
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
952
|
-
|
953
|
-
|
954
|
-
Started GET "/assets/forever_style_guide/check.png" for 127.0.0.1 at 2015-11-10 16:22:20 -0500
|
955
|
-
|
956
|
-
|
957
|
-
Started GET "/style_guide/components" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
958
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
959
|
-
Parameters: {"id"=>"components"}
|
960
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.3ms)
|
961
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.7ms)
|
962
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (2.7ms)
|
963
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (23.1ms)
|
964
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.7ms)
|
965
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (7.0ms)
|
966
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (4.3ms)
|
967
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (9.8ms)
|
968
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (28.4ms)
|
969
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.7ms)
|
970
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.3ms)
|
971
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_basic.erb (0.9ms)
|
972
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.7ms)
|
973
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_stacked.erb (0.5ms)
|
974
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_navigation.html.erb (16.3ms)
|
975
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.4ms)
|
976
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.2ms)
|
977
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.3ms)
|
978
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.3ms)
|
979
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.3ms)
|
980
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.2ms)
|
981
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.4ms)
|
982
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.8ms)
|
983
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (204.2ms)
|
984
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.4ms)
|
985
|
-
Completed 200 OK in 325ms (Views: 324.7ms | ActiveRecord: 0.0ms)
|
986
|
-
|
987
|
-
|
988
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
989
|
-
|
990
|
-
|
991
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
992
|
-
|
993
|
-
|
994
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
995
|
-
|
996
|
-
|
997
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
998
|
-
|
999
|
-
|
1000
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1001
|
-
|
1002
|
-
|
1003
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1004
|
-
|
1005
|
-
|
1006
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1007
|
-
|
1008
|
-
|
1009
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1010
|
-
|
1011
|
-
|
1012
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1013
|
-
|
1014
|
-
|
1015
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1016
|
-
|
1017
|
-
|
1018
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1019
|
-
|
1020
|
-
|
1021
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1022
|
-
|
1023
|
-
|
1024
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1025
|
-
|
1026
|
-
|
1027
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1028
|
-
|
1029
|
-
|
1030
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1031
|
-
|
1032
|
-
|
1033
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1034
|
-
|
1035
|
-
|
1036
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1037
|
-
|
1038
|
-
|
1039
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1040
|
-
|
1041
|
-
|
1042
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1043
|
-
|
1044
|
-
|
1045
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1046
|
-
|
1047
|
-
|
1048
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1049
|
-
|
1050
|
-
|
1051
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1052
|
-
|
1053
|
-
|
1054
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1055
|
-
|
1056
|
-
|
1057
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1058
|
-
|
1059
|
-
|
1060
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1061
|
-
|
1062
|
-
|
1063
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1064
|
-
|
1065
|
-
|
1066
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1067
|
-
|
1068
|
-
|
1069
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1070
|
-
|
1071
|
-
|
1072
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1073
|
-
|
1074
|
-
|
1075
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1076
|
-
|
1077
|
-
|
1078
|
-
Started GET "/assets/style_guide/personas/ted_avatar.png" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1079
|
-
|
1080
|
-
|
1081
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1082
|
-
|
1083
|
-
|
1084
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1085
|
-
|
1086
|
-
|
1087
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1088
|
-
|
1089
|
-
|
1090
|
-
Started GET "/assets/style_guide/hero/beach-girl.jpg" for 127.0.0.1 at 2015-11-10 16:24:53 -0500
|
1091
|
-
|
1092
|
-
|
1093
|
-
Started GET "/style_guide/demo/navigation" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1094
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
1095
|
-
Parameters: {"path"=>"navigation"}
|
1096
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.6ms)
|
1097
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.2ms)
|
1098
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (4.2ms)
|
1099
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (2.3ms)
|
1100
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb (4.5ms)
|
1101
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation.html.erb within layouts/forever_style_guide/application (11.7ms)
|
1102
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.8ms)
|
1103
|
-
Completed 200 OK in 124ms (Views: 124.1ms | ActiveRecord: 0.0ms)
|
1104
|
-
|
1105
|
-
|
1106
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1107
|
-
|
1108
|
-
|
1109
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1110
|
-
|
1111
|
-
|
1112
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1113
|
-
|
1114
|
-
|
1115
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1116
|
-
|
1117
|
-
|
1118
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1119
|
-
|
1120
|
-
|
1121
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1122
|
-
|
1123
|
-
|
1124
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1125
|
-
|
1126
|
-
|
1127
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1128
|
-
|
1129
|
-
|
1130
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1131
|
-
|
1132
|
-
|
1133
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1134
|
-
|
1135
|
-
|
1136
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1137
|
-
|
1138
|
-
|
1139
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:24:59 -0500
|
1140
|
-
|
1141
|
-
|
1142
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1143
|
-
|
1144
|
-
|
1145
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1146
|
-
|
1147
|
-
|
1148
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1149
|
-
|
1150
|
-
|
1151
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1152
|
-
|
1153
|
-
|
1154
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1155
|
-
|
1156
|
-
|
1157
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1158
|
-
|
1159
|
-
|
1160
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1161
|
-
|
1162
|
-
|
1163
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1164
|
-
|
1165
|
-
|
1166
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1167
|
-
|
1168
|
-
|
1169
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1170
|
-
|
1171
|
-
|
1172
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1173
|
-
|
1174
|
-
|
1175
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1176
|
-
|
1177
|
-
|
1178
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1179
|
-
|
1180
|
-
|
1181
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1182
|
-
|
1183
|
-
|
1184
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1185
|
-
|
1186
|
-
|
1187
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1188
|
-
|
1189
|
-
|
1190
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1191
|
-
|
1192
|
-
|
1193
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1194
|
-
|
1195
|
-
|
1196
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1197
|
-
|
1198
|
-
|
1199
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1200
|
-
|
1201
|
-
|
1202
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-10 16:25:00 -0500
|
1203
|
-
|
1204
|
-
|
1205
|
-
Started GET "/style_guide/demo/navigation" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1206
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
1207
|
-
Parameters: {"path"=>"navigation"}
|
1208
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.2ms)
|
1209
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
1210
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (1.6ms)
|
1211
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.7ms)
|
1212
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb (2.2ms)
|
1213
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation.html.erb within layouts/forever_style_guide/application (6.0ms)
|
1214
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.2ms)
|
1215
|
-
Completed 200 OK in 120ms (Views: 119.3ms | ActiveRecord: 0.0ms)
|
1216
|
-
|
1217
|
-
|
1218
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1219
|
-
|
1220
|
-
|
1221
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1222
|
-
|
1223
|
-
|
1224
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1225
|
-
|
1226
|
-
|
1227
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1228
|
-
|
1229
|
-
|
1230
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1231
|
-
|
1232
|
-
|
1233
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1234
|
-
|
1235
|
-
|
1236
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1237
|
-
|
1238
|
-
|
1239
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1240
|
-
|
1241
|
-
|
1242
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1243
|
-
|
1244
|
-
|
1245
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1246
|
-
|
1247
|
-
|
1248
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1249
|
-
|
1250
|
-
|
1251
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1252
|
-
|
1253
|
-
|
1254
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1255
|
-
|
1256
|
-
|
1257
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1258
|
-
|
1259
|
-
|
1260
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1261
|
-
|
1262
|
-
|
1263
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1264
|
-
|
1265
|
-
|
1266
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1267
|
-
|
1268
|
-
|
1269
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1270
|
-
|
1271
|
-
|
1272
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1273
|
-
|
1274
|
-
|
1275
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1276
|
-
|
1277
|
-
|
1278
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1279
|
-
|
1280
|
-
|
1281
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1282
|
-
|
1283
|
-
|
1284
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1285
|
-
|
1286
|
-
|
1287
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1288
|
-
|
1289
|
-
|
1290
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1291
|
-
|
1292
|
-
|
1293
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1294
|
-
|
1295
|
-
|
1296
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1297
|
-
|
1298
|
-
|
1299
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1300
|
-
|
1301
|
-
|
1302
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1303
|
-
|
1304
|
-
|
1305
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1306
|
-
|
1307
|
-
|
1308
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1309
|
-
|
1310
|
-
|
1311
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1312
|
-
|
1313
|
-
|
1314
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1315
|
-
|
1316
|
-
|
1317
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1318
|
-
|
1319
|
-
|
1320
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1321
|
-
|
1322
|
-
|
1323
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1324
|
-
|
1325
|
-
|
1326
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1327
|
-
|
1328
|
-
|
1329
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-10 16:25:32 -0500
|
1330
|
-
|
1331
|
-
|
1332
|
-
Started GET "/style_guide/demo/navigation-fixed" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1333
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
1334
|
-
Parameters: {"path"=>"navigation-fixed"}
|
1335
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
1336
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (1.6ms)
|
1337
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation-fixed.html.erb within layouts/forever_style_guide/application (2.5ms)
|
1338
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.1ms)
|
1339
|
-
Completed 200 OK in 106ms (Views: 105.9ms | ActiveRecord: 0.0ms)
|
1340
|
-
|
1341
|
-
|
1342
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1343
|
-
|
1344
|
-
|
1345
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1346
|
-
|
1347
|
-
|
1348
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1349
|
-
|
1350
|
-
|
1351
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1352
|
-
|
1353
|
-
|
1354
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1355
|
-
|
1356
|
-
|
1357
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1358
|
-
|
1359
|
-
|
1360
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1361
|
-
|
1362
|
-
|
1363
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1364
|
-
|
1365
|
-
|
1366
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1367
|
-
|
1368
|
-
|
1369
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1370
|
-
|
1371
|
-
|
1372
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1373
|
-
|
1374
|
-
|
1375
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1376
|
-
|
1377
|
-
|
1378
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1379
|
-
|
1380
|
-
|
1381
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1382
|
-
|
1383
|
-
|
1384
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1385
|
-
|
1386
|
-
|
1387
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1388
|
-
|
1389
|
-
|
1390
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1391
|
-
|
1392
|
-
|
1393
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1394
|
-
|
1395
|
-
|
1396
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1397
|
-
|
1398
|
-
|
1399
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1400
|
-
|
1401
|
-
|
1402
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1403
|
-
|
1404
|
-
|
1405
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1406
|
-
|
1407
|
-
|
1408
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1409
|
-
|
1410
|
-
|
1411
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1412
|
-
|
1413
|
-
|
1414
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1415
|
-
|
1416
|
-
|
1417
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1418
|
-
|
1419
|
-
|
1420
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1421
|
-
|
1422
|
-
|
1423
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1424
|
-
|
1425
|
-
|
1426
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1427
|
-
|
1428
|
-
|
1429
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1430
|
-
|
1431
|
-
|
1432
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1433
|
-
|
1434
|
-
|
1435
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1436
|
-
|
1437
|
-
|
1438
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1439
|
-
|
1440
|
-
|
1441
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1442
|
-
|
1443
|
-
|
1444
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:25:48 -0500
|
1445
|
-
|
1446
|
-
|
1447
|
-
Started GET "/style_guide/demo/navigation-fixed-signed-in" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1448
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
1449
|
-
Parameters: {"path"=>"navigation-fixed-signed-in"}
|
1450
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.5ms)
|
1451
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing_signed_in.erb (3.0ms)
|
1452
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation-fixed-signed-in.html.erb within layouts/forever_style_guide/application (4.0ms)
|
1453
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
1454
|
-
Completed 200 OK in 111ms (Views: 110.3ms | ActiveRecord: 0.0ms)
|
1455
|
-
|
1456
|
-
|
1457
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1458
|
-
|
1459
|
-
|
1460
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1461
|
-
|
1462
|
-
|
1463
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1464
|
-
|
1465
|
-
|
1466
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1467
|
-
|
1468
|
-
|
1469
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1470
|
-
|
1471
|
-
|
1472
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1473
|
-
|
1474
|
-
|
1475
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1476
|
-
|
1477
|
-
|
1478
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1479
|
-
|
1480
|
-
|
1481
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1482
|
-
|
1483
|
-
|
1484
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1485
|
-
|
1486
|
-
|
1487
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1488
|
-
|
1489
|
-
|
1490
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1491
|
-
|
1492
|
-
|
1493
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1494
|
-
|
1495
|
-
|
1496
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1497
|
-
|
1498
|
-
|
1499
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1500
|
-
|
1501
|
-
|
1502
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:01 -0500
|
1503
|
-
|
1504
|
-
|
1505
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1506
|
-
|
1507
|
-
|
1508
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1509
|
-
|
1510
|
-
|
1511
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1512
|
-
|
1513
|
-
|
1514
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1515
|
-
|
1516
|
-
|
1517
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1518
|
-
|
1519
|
-
|
1520
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1521
|
-
|
1522
|
-
|
1523
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1524
|
-
|
1525
|
-
|
1526
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1527
|
-
|
1528
|
-
|
1529
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1530
|
-
|
1531
|
-
|
1532
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1533
|
-
|
1534
|
-
|
1535
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1536
|
-
|
1537
|
-
|
1538
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1539
|
-
|
1540
|
-
|
1541
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1542
|
-
|
1543
|
-
|
1544
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1545
|
-
|
1546
|
-
|
1547
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1548
|
-
|
1549
|
-
|
1550
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1551
|
-
|
1552
|
-
|
1553
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1554
|
-
|
1555
|
-
|
1556
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1557
|
-
|
1558
|
-
|
1559
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1560
|
-
|
1561
|
-
|
1562
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1563
|
-
|
1564
|
-
|
1565
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:02 -0500
|
1566
|
-
|
1567
|
-
|
1568
|
-
Started GET "/style_guide/components" for 127.0.0.1 at 2015-11-10 16:26:45 -0500
|
1569
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
1570
|
-
Parameters: {"id"=>"components"}
|
1571
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.3ms)
|
1572
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.8ms)
|
1573
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (0.6ms)
|
1574
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.5ms)
|
1575
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.2ms)
|
1576
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (5.1ms)
|
1577
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (0.8ms)
|
1578
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (6.5ms)
|
1579
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (27.0ms)
|
1580
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.2ms)
|
1581
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.9ms)
|
1582
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_basic.erb (0.3ms)
|
1583
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.2ms)
|
1584
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_stacked.erb (0.2ms)
|
1585
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_navigation.html.erb (12.8ms)
|
1586
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.1ms)
|
1587
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.8ms)
|
1588
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.1ms)
|
1589
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.0ms)
|
1590
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
1591
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (14.6ms)
|
1592
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.0ms)
|
1593
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (14.6ms)
|
1594
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (180.1ms)
|
1595
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.5ms)
|
1596
|
-
Completed 200 OK in 292ms (Views: 291.5ms | ActiveRecord: 0.0ms)
|
1597
|
-
|
1598
|
-
|
1599
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1600
|
-
|
1601
|
-
|
1602
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1603
|
-
|
1604
|
-
|
1605
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1606
|
-
|
1607
|
-
|
1608
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1609
|
-
|
1610
|
-
|
1611
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1612
|
-
|
1613
|
-
|
1614
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1615
|
-
|
1616
|
-
|
1617
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1618
|
-
|
1619
|
-
|
1620
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1621
|
-
|
1622
|
-
|
1623
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1624
|
-
|
1625
|
-
|
1626
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1627
|
-
|
1628
|
-
|
1629
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1630
|
-
|
1631
|
-
|
1632
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1633
|
-
|
1634
|
-
|
1635
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1636
|
-
|
1637
|
-
|
1638
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1639
|
-
|
1640
|
-
|
1641
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1642
|
-
|
1643
|
-
|
1644
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1645
|
-
|
1646
|
-
|
1647
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1648
|
-
|
1649
|
-
|
1650
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1651
|
-
|
1652
|
-
|
1653
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1654
|
-
|
1655
|
-
|
1656
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1657
|
-
|
1658
|
-
|
1659
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1660
|
-
|
1661
|
-
|
1662
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1663
|
-
|
1664
|
-
|
1665
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1666
|
-
|
1667
|
-
|
1668
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1669
|
-
|
1670
|
-
|
1671
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1672
|
-
|
1673
|
-
|
1674
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1675
|
-
|
1676
|
-
|
1677
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1678
|
-
|
1679
|
-
|
1680
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1681
|
-
|
1682
|
-
|
1683
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1684
|
-
|
1685
|
-
|
1686
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1687
|
-
|
1688
|
-
|
1689
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1690
|
-
|
1691
|
-
|
1692
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1693
|
-
|
1694
|
-
|
1695
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1696
|
-
|
1697
|
-
|
1698
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1699
|
-
|
1700
|
-
|
1701
|
-
Started GET "/assets/style_guide/hero/beach-girl.jpg" for 127.0.0.1 at 2015-11-10 16:26:46 -0500
|
1702
|
-
|
1703
|
-
|
1704
|
-
Started GET "/style_guide/visual_elements" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1705
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
1706
|
-
Parameters: {"id"=>"visual_elements"}
|
1707
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.2ms)
|
1708
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.6ms)
|
1709
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_buttons.erb (0.4ms)
|
1710
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.4ms)
|
1711
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_dropdowns.erb (0.1ms)
|
1712
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.4ms)
|
1713
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_forms.erb (0.1ms)
|
1714
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.7ms)
|
1715
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_input_groups.erb (0.1ms)
|
1716
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.3ms)
|
1717
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_lists.erb (0.1ms)
|
1718
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.0ms)
|
1719
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_progress.erb (0.1ms)
|
1720
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.5ms)
|
1721
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_headings.erb (0.1ms)
|
1722
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_formatting.erb (0.0ms)
|
1723
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_styles.erb (0.2ms)
|
1724
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_typography.html.erb (12.2ms)
|
1725
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (137.5ms)
|
1726
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.2ms)
|
1727
|
-
Completed 200 OK in 257ms (Views: 256.6ms | ActiveRecord: 0.0ms)
|
1728
|
-
|
1729
|
-
|
1730
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1731
|
-
|
1732
|
-
|
1733
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1734
|
-
|
1735
|
-
|
1736
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1737
|
-
|
1738
|
-
|
1739
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1740
|
-
|
1741
|
-
|
1742
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1743
|
-
|
1744
|
-
|
1745
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1746
|
-
|
1747
|
-
|
1748
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1749
|
-
|
1750
|
-
|
1751
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1752
|
-
|
1753
|
-
|
1754
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1755
|
-
|
1756
|
-
|
1757
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1758
|
-
|
1759
|
-
|
1760
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1761
|
-
|
1762
|
-
|
1763
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1764
|
-
|
1765
|
-
|
1766
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1767
|
-
|
1768
|
-
|
1769
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1770
|
-
|
1771
|
-
|
1772
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1773
|
-
|
1774
|
-
|
1775
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1776
|
-
|
1777
|
-
|
1778
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1779
|
-
|
1780
|
-
|
1781
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1782
|
-
|
1783
|
-
|
1784
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1785
|
-
|
1786
|
-
|
1787
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1788
|
-
|
1789
|
-
|
1790
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1791
|
-
|
1792
|
-
|
1793
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1794
|
-
|
1795
|
-
|
1796
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1797
|
-
|
1798
|
-
|
1799
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1800
|
-
|
1801
|
-
|
1802
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1803
|
-
|
1804
|
-
|
1805
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1806
|
-
|
1807
|
-
|
1808
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1809
|
-
|
1810
|
-
|
1811
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1812
|
-
|
1813
|
-
|
1814
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1815
|
-
|
1816
|
-
|
1817
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1818
|
-
|
1819
|
-
|
1820
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1821
|
-
|
1822
|
-
|
1823
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1824
|
-
|
1825
|
-
|
1826
|
-
Started GET "/assets/ProximaNova-Light-webfont.woff" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1827
|
-
|
1828
|
-
|
1829
|
-
Started GET "/assets/forever_style_guide/check.png" for 127.0.0.1 at 2015-11-10 16:26:50 -0500
|
1830
|
-
|
1831
|
-
|
1832
|
-
Started GET "/style_guide/components" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1833
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
1834
|
-
Parameters: {"id"=>"components"}
|
1835
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.2ms)
|
1836
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.7ms)
|
1837
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (0.6ms)
|
1838
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.9ms)
|
1839
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (1.0ms)
|
1840
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (5.2ms)
|
1841
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (0.9ms)
|
1842
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (5.2ms)
|
1843
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (21.8ms)
|
1844
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.1ms)
|
1845
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (15.1ms)
|
1846
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_basic.erb (0.4ms)
|
1847
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.2ms)
|
1848
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_stacked.erb (0.2ms)
|
1849
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_navigation.html.erb (13.3ms)
|
1850
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.0ms)
|
1851
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (14.9ms)
|
1852
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.1ms)
|
1853
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.2ms)
|
1854
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
1855
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.9ms)
|
1856
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.0ms)
|
1857
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (14.5ms)
|
1858
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (174.8ms)
|
1859
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
1860
|
-
Completed 200 OK in 287ms (Views: 286.8ms | ActiveRecord: 0.0ms)
|
1861
|
-
|
1862
|
-
|
1863
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1864
|
-
|
1865
|
-
|
1866
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1867
|
-
|
1868
|
-
|
1869
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1870
|
-
|
1871
|
-
|
1872
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1873
|
-
|
1874
|
-
|
1875
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1876
|
-
|
1877
|
-
|
1878
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1879
|
-
|
1880
|
-
|
1881
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1882
|
-
|
1883
|
-
|
1884
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1885
|
-
|
1886
|
-
|
1887
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1888
|
-
|
1889
|
-
|
1890
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1891
|
-
|
1892
|
-
|
1893
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1894
|
-
|
1895
|
-
|
1896
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1897
|
-
|
1898
|
-
|
1899
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1900
|
-
|
1901
|
-
|
1902
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1903
|
-
|
1904
|
-
|
1905
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1906
|
-
|
1907
|
-
|
1908
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1909
|
-
|
1910
|
-
|
1911
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1912
|
-
|
1913
|
-
|
1914
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1915
|
-
|
1916
|
-
|
1917
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1918
|
-
|
1919
|
-
|
1920
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1921
|
-
|
1922
|
-
|
1923
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1924
|
-
|
1925
|
-
|
1926
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1927
|
-
|
1928
|
-
|
1929
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1930
|
-
|
1931
|
-
|
1932
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1933
|
-
|
1934
|
-
|
1935
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1936
|
-
|
1937
|
-
|
1938
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1939
|
-
|
1940
|
-
|
1941
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1942
|
-
|
1943
|
-
|
1944
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1945
|
-
|
1946
|
-
|
1947
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1948
|
-
|
1949
|
-
|
1950
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1951
|
-
|
1952
|
-
|
1953
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1954
|
-
|
1955
|
-
|
1956
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1957
|
-
|
1958
|
-
|
1959
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1960
|
-
|
1961
|
-
|
1962
|
-
Started GET "/assets/style_guide/personas/ted_avatar.png" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1963
|
-
|
1964
|
-
|
1965
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1966
|
-
|
1967
|
-
|
1968
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1969
|
-
|
1970
|
-
|
1971
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1972
|
-
|
1973
|
-
|
1974
|
-
Started GET "/assets/style_guide/hero/beach-girl.jpg" for 127.0.0.1 at 2015-11-10 16:32:50 -0500
|
1975
|
-
|
1976
|
-
|
1977
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:51 -0500
|
1978
|
-
|
1979
|
-
|
1980
|
-
Started GET "/style_guide/visual_elements" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
1981
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
1982
|
-
Parameters: {"id"=>"visual_elements"}
|
1983
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.2ms)
|
1984
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.6ms)
|
1985
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_buttons.erb (0.4ms)
|
1986
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.7ms)
|
1987
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_dropdowns.erb (0.1ms)
|
1988
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (20.2ms)
|
1989
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_forms.erb (0.1ms)
|
1990
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.6ms)
|
1991
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_input_groups.erb (0.1ms)
|
1992
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (19.1ms)
|
1993
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_lists.erb (0.1ms)
|
1994
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.8ms)
|
1995
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_progress.erb (0.4ms)
|
1996
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (20.8ms)
|
1997
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_headings.erb (0.0ms)
|
1998
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_formatting.erb (0.0ms)
|
1999
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/typography/_styles.erb (0.1ms)
|
2000
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/visual_elements/_typography.html.erb (11.0ms)
|
2001
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (146.9ms)
|
2002
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
2003
|
-
Completed 200 OK in 252ms (Views: 252.0ms | ActiveRecord: 0.0ms)
|
2004
|
-
|
2005
|
-
|
2006
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2007
|
-
|
2008
|
-
|
2009
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2010
|
-
|
2011
|
-
|
2012
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2013
|
-
|
2014
|
-
|
2015
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2016
|
-
|
2017
|
-
|
2018
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2019
|
-
|
2020
|
-
|
2021
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2022
|
-
|
2023
|
-
|
2024
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2025
|
-
|
2026
|
-
|
2027
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:52 -0500
|
2028
|
-
|
2029
|
-
|
2030
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2031
|
-
|
2032
|
-
|
2033
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2034
|
-
|
2035
|
-
|
2036
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2037
|
-
|
2038
|
-
|
2039
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2040
|
-
|
2041
|
-
|
2042
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2043
|
-
|
2044
|
-
|
2045
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2046
|
-
|
2047
|
-
|
2048
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2049
|
-
|
2050
|
-
|
2051
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2052
|
-
|
2053
|
-
|
2054
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2055
|
-
|
2056
|
-
|
2057
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2058
|
-
|
2059
|
-
|
2060
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2061
|
-
|
2062
|
-
|
2063
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2064
|
-
|
2065
|
-
|
2066
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2067
|
-
|
2068
|
-
|
2069
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2070
|
-
|
2071
|
-
|
2072
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2073
|
-
|
2074
|
-
|
2075
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2076
|
-
|
2077
|
-
|
2078
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2079
|
-
|
2080
|
-
|
2081
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2082
|
-
|
2083
|
-
|
2084
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2085
|
-
|
2086
|
-
|
2087
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2088
|
-
|
2089
|
-
|
2090
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2091
|
-
|
2092
|
-
|
2093
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2094
|
-
|
2095
|
-
|
2096
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2097
|
-
|
2098
|
-
|
2099
|
-
Started GET "/assets/ProximaNova-Light-webfont.woff" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2100
|
-
|
2101
|
-
|
2102
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2103
|
-
|
2104
|
-
|
2105
|
-
Started GET "/assets/forever_style_guide/check.png" for 127.0.0.1 at 2015-11-10 16:32:53 -0500
|
2106
|
-
|
2107
|
-
|
2108
|
-
Started GET "/style_guide/components" for 127.0.0.1 at 2015-11-13 10:28:33 -0500
|
2109
|
-
Processing by ForeverStyleGuide::StyleController#show as HTML
|
2110
|
-
Parameters: {"id"=>"components"}
|
2111
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (1.1ms)
|
2112
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (1.2ms)
|
2113
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (4.6ms)
|
2114
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (36.5ms)
|
2115
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (2.0ms)
|
2116
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (9.1ms)
|
2117
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/footer/_footer_demo.erb (7.4ms)
|
2118
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (13.9ms)
|
2119
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (36.5ms)
|
2120
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (1.3ms)
|
2121
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.1ms)
|
2122
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_basic.erb (1.1ms)
|
2123
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.7ms)
|
2124
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_stacked.erb (0.5ms)
|
2125
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_navigation.html.erb (19.7ms)
|
2126
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.3ms)
|
2127
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.1ms)
|
2128
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.3ms)
|
2129
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.6ms)
|
2130
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.4ms)
|
2131
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.3ms)
|
2132
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.5ms)
|
2133
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (16.2ms)
|
2134
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (237.0ms)
|
2135
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.9ms)
|
2136
|
-
Completed 200 OK in 4620ms (Views: 4619.9ms | ActiveRecord: 0.0ms)
|
2137
|
-
|
2138
|
-
|
2139
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:28:37 -0500
|
2140
|
-
|
2141
|
-
|
2142
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:37 -0500
|
2143
|
-
|
2144
|
-
|
2145
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:37 -0500
|
2146
|
-
|
2147
|
-
|
2148
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:28:37 -0500
|
2149
|
-
|
2150
|
-
|
2151
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2152
|
-
|
2153
|
-
|
2154
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2155
|
-
|
2156
|
-
|
2157
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2158
|
-
|
2159
|
-
|
2160
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2161
|
-
|
2162
|
-
|
2163
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2164
|
-
|
2165
|
-
|
2166
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2167
|
-
|
2168
|
-
|
2169
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2170
|
-
|
2171
|
-
|
2172
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2173
|
-
|
2174
|
-
|
2175
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2176
|
-
|
2177
|
-
|
2178
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2179
|
-
|
2180
|
-
|
2181
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2182
|
-
|
2183
|
-
|
2184
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2185
|
-
|
2186
|
-
|
2187
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2188
|
-
|
2189
|
-
|
2190
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2191
|
-
|
2192
|
-
|
2193
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2194
|
-
|
2195
|
-
|
2196
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2197
|
-
|
2198
|
-
|
2199
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2200
|
-
|
2201
|
-
|
2202
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2203
|
-
|
2204
|
-
|
2205
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2206
|
-
|
2207
|
-
|
2208
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2209
|
-
|
2210
|
-
|
2211
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2212
|
-
|
2213
|
-
|
2214
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2215
|
-
|
2216
|
-
|
2217
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2218
|
-
|
2219
|
-
|
2220
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2221
|
-
|
2222
|
-
|
2223
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2224
|
-
|
2225
|
-
|
2226
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2227
|
-
|
2228
|
-
|
2229
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2230
|
-
|
2231
|
-
|
2232
|
-
Started GET "/assets/style_guide/personas/ted_avatar.png" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2233
|
-
|
2234
|
-
|
2235
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2236
|
-
|
2237
|
-
|
2238
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2239
|
-
|
2240
|
-
|
2241
|
-
Started GET "/assets/style_guide/hero/beach-girl.jpg" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2242
|
-
|
2243
|
-
|
2244
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:28:38 -0500
|
2245
|
-
|
2246
|
-
|
2247
|
-
Started GET "/style_guide/demo/navigation" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2248
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
2249
|
-
Parameters: {"path"=>"navigation"}
|
2250
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.6ms)
|
2251
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.2ms)
|
2252
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (4.1ms)
|
2253
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (3.3ms)
|
2254
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb (6.2ms)
|
2255
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation.html.erb within layouts/forever_style_guide/application (13.2ms)
|
2256
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.1ms)
|
2257
|
-
Completed 200 OK in 115ms (Views: 114.7ms | ActiveRecord: 0.0ms)
|
2258
|
-
|
2259
|
-
|
2260
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2261
|
-
|
2262
|
-
|
2263
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2264
|
-
|
2265
|
-
|
2266
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2267
|
-
|
2268
|
-
|
2269
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2270
|
-
|
2271
|
-
|
2272
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2273
|
-
|
2274
|
-
|
2275
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2276
|
-
|
2277
|
-
|
2278
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2279
|
-
|
2280
|
-
|
2281
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2282
|
-
|
2283
|
-
|
2284
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2285
|
-
|
2286
|
-
|
2287
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2288
|
-
|
2289
|
-
|
2290
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2291
|
-
|
2292
|
-
|
2293
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2294
|
-
|
2295
|
-
|
2296
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2297
|
-
|
2298
|
-
|
2299
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2300
|
-
|
2301
|
-
|
2302
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2303
|
-
|
2304
|
-
|
2305
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2306
|
-
|
2307
|
-
|
2308
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2309
|
-
|
2310
|
-
|
2311
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2312
|
-
|
2313
|
-
|
2314
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2315
|
-
|
2316
|
-
|
2317
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2318
|
-
|
2319
|
-
|
2320
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2321
|
-
|
2322
|
-
|
2323
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2324
|
-
|
2325
|
-
|
2326
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2327
|
-
|
2328
|
-
|
2329
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2330
|
-
|
2331
|
-
|
2332
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2333
|
-
|
2334
|
-
|
2335
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2336
|
-
|
2337
|
-
|
2338
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2339
|
-
|
2340
|
-
|
2341
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2342
|
-
|
2343
|
-
|
2344
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2345
|
-
|
2346
|
-
|
2347
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2348
|
-
|
2349
|
-
|
2350
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2351
|
-
|
2352
|
-
|
2353
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2354
|
-
|
2355
|
-
|
2356
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2357
|
-
|
2358
|
-
|
2359
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:29:01 -0500
|
2360
|
-
|
2361
|
-
|
2362
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:29:09 -0500
|
2363
|
-
|
2364
|
-
|
2365
|
-
Started GET "/style_guide/demo/navigation" for 127.0.0.1 at 2015-11-13 10:31:34 -0500
|
2366
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
2367
|
-
Parameters: {"path"=>"navigation"}
|
2368
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.3ms)
|
2369
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
2370
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (1.5ms)
|
2371
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.6ms)
|
2372
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb (2.0ms)
|
2373
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation.html.erb within layouts/forever_style_guide/application (6.0ms)
|
2374
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.3ms)
|
2375
|
-
Completed 200 OK in 3717ms (Views: 3716.0ms | ActiveRecord: 0.0ms)
|
2376
|
-
|
2377
|
-
|
2378
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2379
|
-
|
2380
|
-
|
2381
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2382
|
-
|
2383
|
-
|
2384
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2385
|
-
|
2386
|
-
|
2387
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2388
|
-
|
2389
|
-
|
2390
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2391
|
-
|
2392
|
-
|
2393
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2394
|
-
|
2395
|
-
|
2396
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2397
|
-
|
2398
|
-
|
2399
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2400
|
-
|
2401
|
-
|
2402
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2403
|
-
|
2404
|
-
|
2405
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2406
|
-
|
2407
|
-
|
2408
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2409
|
-
|
2410
|
-
|
2411
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2412
|
-
|
2413
|
-
|
2414
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2415
|
-
|
2416
|
-
|
2417
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2418
|
-
|
2419
|
-
|
2420
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2421
|
-
|
2422
|
-
|
2423
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2424
|
-
|
2425
|
-
|
2426
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2427
|
-
|
2428
|
-
|
2429
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2430
|
-
|
2431
|
-
|
2432
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2433
|
-
|
2434
|
-
|
2435
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2436
|
-
|
2437
|
-
|
2438
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2439
|
-
|
2440
|
-
|
2441
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2442
|
-
|
2443
|
-
|
2444
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2445
|
-
|
2446
|
-
|
2447
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2448
|
-
|
2449
|
-
|
2450
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2451
|
-
|
2452
|
-
|
2453
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2454
|
-
|
2455
|
-
|
2456
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2457
|
-
|
2458
|
-
|
2459
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2460
|
-
|
2461
|
-
|
2462
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2463
|
-
|
2464
|
-
|
2465
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2466
|
-
|
2467
|
-
|
2468
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2469
|
-
|
2470
|
-
|
2471
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2472
|
-
|
2473
|
-
|
2474
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2475
|
-
|
2476
|
-
|
2477
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2478
|
-
|
2479
|
-
|
2480
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2481
|
-
|
2482
|
-
|
2483
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2484
|
-
|
2485
|
-
|
2486
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-13 10:31:38 -0500
|
2487
|
-
|
2488
|
-
|
2489
|
-
Started GET "/style_guide/demo/navigation" for 127.0.0.1 at 2015-11-13 10:31:56 -0500
|
2490
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
2491
|
-
Parameters: {"path"=>"navigation"}
|
2492
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_dropdown.erb (0.3ms)
|
2493
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.0ms)
|
2494
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing.erb (1.3ms)
|
2495
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.5ms)
|
2496
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb (1.6ms)
|
2497
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation.html.erb within layouts/forever_style_guide/application (5.3ms)
|
2498
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
2499
|
-
Completed 200 OK in 107ms (Views: 106.6ms | ActiveRecord: 0.0ms)
|
2500
|
-
|
2501
|
-
|
2502
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2503
|
-
|
2504
|
-
|
2505
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2506
|
-
|
2507
|
-
|
2508
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2509
|
-
|
2510
|
-
|
2511
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2512
|
-
|
2513
|
-
|
2514
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2515
|
-
|
2516
|
-
|
2517
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2518
|
-
|
2519
|
-
|
2520
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2521
|
-
|
2522
|
-
|
2523
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2524
|
-
|
2525
|
-
|
2526
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2527
|
-
|
2528
|
-
|
2529
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2530
|
-
|
2531
|
-
|
2532
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2533
|
-
|
2534
|
-
|
2535
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2536
|
-
|
2537
|
-
|
2538
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2539
|
-
|
2540
|
-
|
2541
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2542
|
-
|
2543
|
-
|
2544
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2545
|
-
|
2546
|
-
|
2547
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2548
|
-
|
2549
|
-
|
2550
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2551
|
-
|
2552
|
-
|
2553
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2554
|
-
|
2555
|
-
|
2556
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2557
|
-
|
2558
|
-
|
2559
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2560
|
-
|
2561
|
-
|
2562
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2563
|
-
|
2564
|
-
|
2565
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2566
|
-
|
2567
|
-
|
2568
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2569
|
-
|
2570
|
-
|
2571
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2572
|
-
|
2573
|
-
|
2574
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2575
|
-
|
2576
|
-
|
2577
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2578
|
-
|
2579
|
-
|
2580
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2581
|
-
|
2582
|
-
|
2583
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2584
|
-
|
2585
|
-
|
2586
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2587
|
-
|
2588
|
-
|
2589
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2590
|
-
|
2591
|
-
|
2592
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2593
|
-
|
2594
|
-
|
2595
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2596
|
-
|
2597
|
-
|
2598
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2599
|
-
|
2600
|
-
|
2601
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2602
|
-
|
2603
|
-
|
2604
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2605
|
-
|
2606
|
-
|
2607
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2608
|
-
|
2609
|
-
|
2610
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:31:57 -0500
|
2611
|
-
|
2612
|
-
|
2613
|
-
Started GET "/style_guide/demo/navigation-fixed-signed-in" for 127.0.0.1 at 2015-11-13 10:32:15 -0500
|
2614
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
2615
|
-
Parameters: {"path"=>"navigation-fixed-signed-in"}
|
2616
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.7ms)
|
2617
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing_signed_in.erb (3.4ms)
|
2618
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation-fixed-signed-in.html.erb within layouts/forever_style_guide/application (4.5ms)
|
2619
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
2620
|
-
Completed 200 OK in 106ms (Views: 105.4ms | ActiveRecord: 0.0ms)
|
2621
|
-
|
2622
|
-
|
2623
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2624
|
-
|
2625
|
-
|
2626
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2627
|
-
|
2628
|
-
|
2629
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2630
|
-
|
2631
|
-
|
2632
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2633
|
-
|
2634
|
-
|
2635
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2636
|
-
|
2637
|
-
|
2638
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2639
|
-
|
2640
|
-
|
2641
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2642
|
-
|
2643
|
-
|
2644
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2645
|
-
|
2646
|
-
|
2647
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2648
|
-
|
2649
|
-
|
2650
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2651
|
-
|
2652
|
-
|
2653
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2654
|
-
|
2655
|
-
|
2656
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2657
|
-
|
2658
|
-
|
2659
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2660
|
-
|
2661
|
-
|
2662
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2663
|
-
|
2664
|
-
|
2665
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2666
|
-
|
2667
|
-
|
2668
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2669
|
-
|
2670
|
-
|
2671
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2672
|
-
|
2673
|
-
|
2674
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2675
|
-
|
2676
|
-
|
2677
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2678
|
-
|
2679
|
-
|
2680
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2681
|
-
|
2682
|
-
|
2683
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2684
|
-
|
2685
|
-
|
2686
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2687
|
-
|
2688
|
-
|
2689
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2690
|
-
|
2691
|
-
|
2692
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2693
|
-
|
2694
|
-
|
2695
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2696
|
-
|
2697
|
-
|
2698
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2699
|
-
|
2700
|
-
|
2701
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2702
|
-
|
2703
|
-
|
2704
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2705
|
-
|
2706
|
-
|
2707
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2708
|
-
|
2709
|
-
|
2710
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2711
|
-
|
2712
|
-
|
2713
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2714
|
-
|
2715
|
-
|
2716
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2717
|
-
|
2718
|
-
|
2719
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2720
|
-
|
2721
|
-
|
2722
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2723
|
-
|
2724
|
-
|
2725
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2726
|
-
|
2727
|
-
|
2728
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2729
|
-
|
2730
|
-
|
2731
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:32:16 -0500
|
2732
|
-
|
2733
|
-
|
2734
|
-
Started GET "/style_guide/demo/navigation-fixed-signed-in" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2735
|
-
Processing by ForeverStyleGuide::StyleController#demo as HTML
|
2736
|
-
Parameters: {"path"=>"navigation-fixed-signed-in"}
|
2737
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb (0.6ms)
|
2738
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/sections/components/navigation/_marketing_signed_in.erb (2.3ms)
|
2739
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/forever_style_guide/demo/navigation-fixed-signed-in.html.erb within layouts/forever_style_guide/application (3.3ms)
|
2740
|
-
Rendered /Users/nmcclay/Documents/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.0ms)
|
2741
|
-
Completed 200 OK in 107ms (Views: 106.6ms | ActiveRecord: 0.0ms)
|
2742
|
-
|
2743
|
-
|
2744
|
-
Started GET "/assets/style_guide/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2745
|
-
|
2746
|
-
|
2747
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2748
|
-
|
2749
|
-
|
2750
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2751
|
-
|
2752
|
-
|
2753
|
-
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2754
|
-
|
2755
|
-
|
2756
|
-
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2757
|
-
|
2758
|
-
|
2759
|
-
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2760
|
-
|
2761
|
-
|
2762
|
-
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2763
|
-
|
2764
|
-
|
2765
|
-
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2766
|
-
|
2767
|
-
|
2768
|
-
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2769
|
-
|
2770
|
-
|
2771
|
-
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2772
|
-
|
2773
|
-
|
2774
|
-
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2775
|
-
|
2776
|
-
|
2777
|
-
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2778
|
-
|
2779
|
-
|
2780
|
-
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2781
|
-
|
2782
|
-
|
2783
|
-
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2784
|
-
|
2785
|
-
|
2786
|
-
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2787
|
-
|
2788
|
-
|
2789
|
-
Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2790
|
-
|
2791
|
-
|
2792
|
-
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2793
|
-
|
2794
|
-
|
2795
|
-
Started GET "/assets/style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2796
|
-
|
2797
|
-
|
2798
|
-
Started GET "/assets/style_guide/identifiers.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2799
|
-
|
2800
|
-
|
2801
|
-
Started GET "/assets/style_guide/prettify.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2802
|
-
|
2803
|
-
|
2804
|
-
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2805
|
-
|
2806
|
-
|
2807
|
-
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2808
|
-
|
2809
|
-
|
2810
|
-
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2811
|
-
|
2812
|
-
|
2813
|
-
Started GET "/assets/forever_style_guide/nav-fixed.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2814
|
-
|
2815
|
-
|
2816
|
-
Started GET "/assets/forever_style_guide/navbar.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2817
|
-
|
2818
|
-
|
2819
|
-
Started GET "/assets/forever_style_guide/popover.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2820
|
-
|
2821
|
-
|
2822
|
-
Started GET "/assets/forever_style_guide/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2823
|
-
|
2824
|
-
|
2825
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2826
|
-
|
2827
|
-
|
2828
|
-
Started GET "/assets/forever_style_guide/forever-logo.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2829
|
-
|
2830
|
-
|
2831
|
-
Started GET "/assets/forever_style_guide/forever-swirl-logo.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2832
|
-
|
2833
|
-
|
2834
|
-
Started GET "/assets/forever_style_guide/artisan-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2835
|
-
|
2836
|
-
|
2837
|
-
Started GET "/assets/forever_style_guide/historian-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2838
|
-
|
2839
|
-
|
2840
|
-
Started GET "/assets/forever_style_guide/services-logo-sm.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2841
|
-
|
2842
|
-
|
2843
|
-
Started GET "/assets/style_guide/personas/jane_avatar.png" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2844
|
-
|
2845
|
-
|
2846
|
-
Started GET "/assets/fontawesome-webfont.woff2?v=4.4.0" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2847
|
-
|
2848
|
-
|
2849
|
-
Started GET "/assets/ProximaNova-Reg-webfont.woff" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|
2850
|
-
|
2851
|
-
|
2852
|
-
Started GET "/assets/ProximaNova-Bold-webfont.woff" for 127.0.0.1 at 2015-11-13 10:33:07 -0500
|