forever_style_guide 1.2.7 → 1.2.8
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/account-popover.js +89 -2
- data/app/assets/stylesheets/forever_style_guide/modules/_account-popover.scss +21 -5
- data/app/assets/stylesheets/forever_style_guide/modules/_navbar.scss +1 -0
- data/app/assets/stylesheets/forever_style_guide/modules/_progress.scss +11 -0
- data/app/views/forever_style_guide/sections/components/navigation/_account_popover.erb +24 -0
- data/app/views/forever_style_guide/sections/components/navigation/_marketing.erb +2 -3
- data/app/views/forever_style_guide/sections/components/navigation/_marketing_signed_in.erb +2 -4
- data/app/views/forever_style_guide/sections/components/navigation/_signed_in.erb +2 -3
- data/app/views/forever_style_guide/sections/visual_elements/_progress.erb +9 -0
- data/lib/forever_style_guide/version.rb +1 -1
- data/test/dummy/log/development.log +2278 -0
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f83cf6f58b6e1c2a524e6284790a1c2dca55dccf
|
4
|
+
data.tar.gz: 23d8b9e1561368d4d66fa26a824bde15639164e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b74486a2975bc60fd64c6d1b31e8ccde50c57cd46a5fec675218272429918741f620b641b6126b4cd489a1248e97d966c4bf13ee9b4fc105a36ec9ef7b0f78f1
|
7
|
+
data.tar.gz: 48c7f04837938da134968054497e056facda275c296c992d58def003ced7404b39f811789b7714a81b445795944f580c51f70b7cbcaccdc3492c93adf1d3a1d7
|
@@ -1,3 +1,90 @@
|
|
1
|
+
// an 'accounPopover' namespace for additional popover functionality.
|
2
|
+
var accountPopover = (function () {
|
3
|
+
/**
|
4
|
+
Apply 'danger', 'warning' classes to the
|
5
|
+
popover's progress bar and upgrade button.
|
6
|
+
|
7
|
+
Example
|
8
|
+
|
9
|
+
```javascript
|
10
|
+
_addStateClasses($popoverContainer, 'danger');
|
11
|
+
```
|
12
|
+
|
13
|
+
@private
|
14
|
+
*/
|
15
|
+
var _addStateClasses = function (container, state) {
|
16
|
+
container.find(".account-popover-link-text").addClass("account-popover-link-" + state);
|
17
|
+
container.find(".account-popover-storage-upgrade .btn").addClass("btn-" + state);
|
18
|
+
container.find(".progress-bar").addClass("progress-bar-" + state);
|
19
|
+
};
|
20
|
+
|
21
|
+
/**
|
22
|
+
Removes the 'danger' and 'warning' classes to
|
23
|
+
the popover's progress bar and upgrade button.
|
24
|
+
|
25
|
+
Example
|
26
|
+
|
27
|
+
```javascript
|
28
|
+
_resetClasses($popoverContainer);
|
29
|
+
```
|
30
|
+
|
31
|
+
@private
|
32
|
+
*/
|
33
|
+
var _resetClasses = function (container) {
|
34
|
+
container.find(".account-popover-link-danger").removeClass("account-popover-link-danger");
|
35
|
+
container.find(".account-popover-link-warning").removeClass("account-popover-link-warning");
|
36
|
+
container.find(".account-popover-storage-upgrade .btn").removeClass("btn-danger btn-warning");
|
37
|
+
container.find(".progress-bar").removeClass("progress-bar-danger progress-bar-warning");
|
38
|
+
};
|
39
|
+
|
40
|
+
/**
|
41
|
+
Sets the user's storage data in the account
|
42
|
+
popover.
|
43
|
+
|
44
|
+
Example
|
45
|
+
|
46
|
+
```javascript
|
47
|
+
var storage = {
|
48
|
+
membership_type: "Intro Member",
|
49
|
+
percent_used: "35%",
|
50
|
+
total_storage: "3GB"
|
51
|
+
};
|
52
|
+
|
53
|
+
accountPopover.setAccountStorage(storage)
|
54
|
+
```
|
55
|
+
|
56
|
+
@public
|
57
|
+
*/
|
58
|
+
var setAccountStorage = function (storage) {
|
59
|
+
if (!storage.membership_type || !storage.percent_used || !storage.total_storage) {
|
60
|
+
return console.warn("argument storage must contain the following keys: 'membership_type', 'percent_used', 'total_storage'");
|
61
|
+
}
|
62
|
+
|
63
|
+
var container = $(".account-popover-storage");
|
64
|
+
var percentAsInt = parseInt(storage.percent_used);
|
65
|
+
|
66
|
+
_resetClasses(container);
|
67
|
+
|
68
|
+
container.find(".account-popover-membership_type").html(storage.membership_type);
|
69
|
+
container.find(".account-popover-percent_used, .progress-label").html(storage.percent_used);
|
70
|
+
container.find(".account-popover-total_storage").html(storage.total_storage);
|
71
|
+
container.find(".progress-bar").attr("style", "width: " + storage.percent_used + ";");
|
72
|
+
|
73
|
+
if (percentAsInt >= 100) {
|
74
|
+
_addStateClasses(container, "danger");
|
75
|
+
container.find(".account-popover-storage-upgrade").show();
|
76
|
+
} else if (percentAsInt >= 90) {
|
77
|
+
_addStateClasses(container, "warning");
|
78
|
+
} else {
|
79
|
+
container.find(".account-popover-storage-upgrade").hide();
|
80
|
+
}
|
81
|
+
};
|
82
|
+
|
83
|
+
return {
|
84
|
+
setAccountStorage: setAccountStorage
|
85
|
+
};
|
86
|
+
})();
|
87
|
+
|
1
88
|
// Trigger account popovers
|
2
89
|
$(function () {
|
3
90
|
$('[data-toggle="popover-desktop"]').popover({
|
@@ -25,8 +112,8 @@ $(function () {
|
|
25
112
|
$('.account-popover-trigger').on('shown.bs.popover', function () {
|
26
113
|
var windowHeight = $(window).height();
|
27
114
|
|
28
|
-
$(function() {
|
29
|
-
var navHeight = ($('#header-is_fixed').outerHeight());
|
115
|
+
$(function() {
|
116
|
+
var navHeight = ($('#header-is_fixed').outerHeight());
|
30
117
|
if (navHeight >= windowHeight) {
|
31
118
|
$('body').addClass('body-fixed');
|
32
119
|
$('#header-is_fixed').css('max-height', windowHeight);
|
@@ -7,13 +7,13 @@ $webapp-popover-background: #333333;
|
|
7
7
|
position: relative;
|
8
8
|
top: 0!important; //override default popover inline styles
|
9
9
|
left: 0!important;
|
10
|
+
padding: 0;
|
10
11
|
margin-top: 0;
|
11
|
-
background-color: $webapp-popover-background;
|
12
12
|
border: 0;
|
13
13
|
border-radius: $border-radius-large;
|
14
14
|
|
15
|
-
.arrow
|
16
|
-
border-bottom-color: $
|
15
|
+
.arrow {
|
16
|
+
border-bottom-color: $color-gray-400;
|
17
17
|
}
|
18
18
|
.popover-content {
|
19
19
|
padding: 0;
|
@@ -28,7 +28,7 @@ $webapp-popover-background: #333333;
|
|
28
28
|
}
|
29
29
|
}
|
30
30
|
.account-popover-container {
|
31
|
-
position:
|
31
|
+
position: absolute;
|
32
32
|
height: 0;
|
33
33
|
right: 15px;
|
34
34
|
top: 55px;
|
@@ -73,8 +73,13 @@ $webapp-popover-background: #333333;
|
|
73
73
|
max-width: inherit;
|
74
74
|
}
|
75
75
|
}
|
76
|
-
|
76
|
+
.account-popover-storage {
|
77
|
+
.progress {
|
78
|
+
margin: 10px 0;
|
79
|
+
}
|
80
|
+
}
|
77
81
|
.account-popover-app {
|
82
|
+
background-color: $webapp-popover-background;
|
78
83
|
padding: 25px 35px 15px;
|
79
84
|
|
80
85
|
.account-popover-link {
|
@@ -115,3 +120,14 @@ $webapp-popover-background: #333333;
|
|
115
120
|
}
|
116
121
|
}
|
117
122
|
}
|
123
|
+
.account-popover-link {
|
124
|
+
&.account-popover-link-text {
|
125
|
+
color: color('text');
|
126
|
+
}
|
127
|
+
&.account-popover-link-warning {
|
128
|
+
color: color('warning');
|
129
|
+
}
|
130
|
+
&.account-popover-link-danger {
|
131
|
+
color: color('red');
|
132
|
+
}
|
133
|
+
}
|
@@ -5,7 +5,18 @@ $progress-rounding: 10px;
|
|
5
5
|
border-radius: $progress-rounding;
|
6
6
|
background-color: $color-background;
|
7
7
|
}
|
8
|
+
.progress-thin {
|
9
|
+
height: 5px;
|
10
|
+
border-radius: 0;
|
11
|
+
background: color('black');
|
8
12
|
|
13
|
+
.progress-bar {
|
14
|
+
border-radius: 0;
|
15
|
+
}
|
16
|
+
.progress-label {
|
17
|
+
display: none;
|
18
|
+
}
|
19
|
+
}
|
9
20
|
.progress-bar,
|
10
21
|
.progress-bar-default {
|
11
22
|
line-height: 17px; // line height centers the label vertically
|
@@ -15,6 +15,30 @@
|
|
15
15
|
</div>
|
16
16
|
|
17
17
|
<div class="account-popover hidden">
|
18
|
+
<div class="account-popover-storage l-padded-thin">
|
19
|
+
<div class="row">
|
20
|
+
<div class="col-sm-6 account-popover-membership_type">Permanent Member</div>
|
21
|
+
<div class="col-sm-6 text-right">
|
22
|
+
<%= link_to "#", class: 'account-popover-link account-popover-link-text' do %>
|
23
|
+
<span class="account-popover-percent_used">26%</span> of <span class="account-popover-total_storage">10GB</span> <%= fa_icon("chevron-right") %>
|
24
|
+
<% end %>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
<div class="row">
|
28
|
+
<div class="col-sm-12">
|
29
|
+
<div class="progress progress-thin">
|
30
|
+
<div class="progress-bar" role="progressbar" aria-valuenow="26" aria-valuemin="0" aria-valuemax="100" style="width: 26%">
|
31
|
+
<span class="progress-label">26%</span>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
<div class="row account-popover-storage-upgrade">
|
37
|
+
<div class="col-sm-12">
|
38
|
+
<button class="btn btn-gray btn-inverse btn-block">Upgrade My Storage</button>
|
39
|
+
</div>
|
40
|
+
</div>
|
41
|
+
</div>
|
18
42
|
<div class="account-popover-app">
|
19
43
|
<div class="row">
|
20
44
|
<div class="col-sm-6">
|
@@ -150,7 +150,6 @@
|
|
150
150
|
<%= render partial: "forever_style_guide/sections/components/sign_in" %>
|
151
151
|
</ul>
|
152
152
|
</div><!--/.nav-collapse -->
|
153
|
+
<div class="account-popover-container"></div>
|
154
|
+
<div class="account-popover-container-mobile"></div>
|
153
155
|
</nav>
|
154
|
-
|
155
|
-
<div class="account-popover-container"></div>
|
156
|
-
<div class="account-popover-container-mobile"></div>
|
@@ -150,8 +150,6 @@
|
|
150
150
|
<%= render partial: "forever_style_guide/sections/components/navigation/account_popover" %>
|
151
151
|
</ul>
|
152
152
|
</div>
|
153
|
+
<div class="account-popover-container"></div>
|
154
|
+
<div class="account-popover-container-mobile"></div>
|
153
155
|
</nav>
|
154
|
-
|
155
|
-
<div class="account-popover-container"></div>
|
156
|
-
<div class="account-popover-container-mobile"></div>
|
157
|
-
|
@@ -108,7 +108,6 @@
|
|
108
108
|
<%= render partial: "forever_style_guide/sections/components/navigation/account_popover" %>
|
109
109
|
</ul>
|
110
110
|
</div><!--/.nav-collapse -->
|
111
|
+
<div class="account-popover-container"></div>
|
112
|
+
<div class="account-popover-container-mobile"></div>
|
111
113
|
</nav>
|
112
|
-
|
113
|
-
<div class="account-popover-container"></div>
|
114
|
-
<div class="account-popover-container-mobile"></div>
|
@@ -71,3 +71,12 @@
|
|
71
71
|
<span class="progress-label">45%</span>
|
72
72
|
</div>
|
73
73
|
</div>
|
74
|
+
|
75
|
+
<hr />
|
76
|
+
|
77
|
+
<label>Thin - .progress-thin</label>
|
78
|
+
<div class="progress progress-thin">
|
79
|
+
<div class="progress-bar" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
|
80
|
+
<span class="progress-label">40%</span>
|
81
|
+
</div>
|
82
|
+
</div>
|
@@ -572,3 +572,2281 @@ 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
|