forever_style_guide 3.0.22 → 3.0.23
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/stylesheets/forever_style_guide/modules/_nav-dropdowns-ambassador.scss +0 -8
- data/app/views/forever_style_guide/sections/components/navigation/_nav_ambassador_dropdown.erb +12 -12
- data/app/views/forever_style_guide/sections/components/navigation/_nav_community_dropdown.erb +1 -1
- data/lib/forever_style_guide/version.rb +1 -1
- data/test/dummy/log/development.log +227 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e183bb0d7a4b26a4cd3b3a0bf15db841bc37170b
|
4
|
+
data.tar.gz: e086a1cf843879d1820c8c379f49430cf4cba102
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c292a5bcd09ee11d26e410d482b67344fe9b5d7c58bcaf781baeb29cc9e391b3d5e0e630ca4c88473929db3e752566c4c2c44d80a17bbd878618a490e42e7e30
|
7
|
+
data.tar.gz: 0772614874806a96018c5d9b9e16cd1331a2059965a2a42c7095a49a9544ad8c2adce01f4291ff19acc6f2ce0ebd3e1072e4d8dfe141a8efeca3fe7d863b9492
|
@@ -76,14 +76,6 @@ $your-ambassador-intro-text-width: 110px;
|
|
76
76
|
}
|
77
77
|
}
|
78
78
|
.dropdown-ambassador-contact_btn {
|
79
|
-
max-width: $offcanvas-width;
|
80
|
-
overflow: hidden;
|
81
|
-
text-overflow: ellipsis;
|
82
|
-
|
83
|
-
@media (min-width: $grid-float-breakpoint) and (max-width: $screen-md-max) {
|
84
|
-
max-width: 180px;
|
85
|
-
}
|
86
|
-
|
87
79
|
&:hover,
|
88
80
|
&:active,
|
89
81
|
&:focus {
|
data/app/views/forever_style_guide/sections/components/navigation/_nav_ambassador_dropdown.erb
CHANGED
@@ -42,48 +42,48 @@
|
|
42
42
|
<div class="row">
|
43
43
|
<% if current_ambassador.email %>
|
44
44
|
<div class="col-grid-float-6">
|
45
|
-
<%= mail_to current_ambassador.email,
|
46
|
-
<i class="fa fa-envelope btn-action-icon"></i><span class="btn-action-label"><%= current_ambassador.email %></span>
|
45
|
+
<%= mail_to current_ambassador.email, title: current_ambassador.email, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn' do %>
|
46
|
+
<i class="fa fa-fw fa-envelope btn-action-icon"></i><span class="btn-action-label"><%= current_ambassador.email %></span>
|
47
47
|
<% end %>
|
48
48
|
</div>
|
49
49
|
<% end %>
|
50
50
|
|
51
51
|
<% if current_ambassador.phone %>
|
52
52
|
<div class="col-grid-float-6">
|
53
|
-
<%= link_to ('tel:+' + number_to_phone(current_ambassador.phone)),
|
54
|
-
<i class="fa fa-phone btn-action-icon"></i><span class="btn-action-label"><%= number_to_phone(current_ambassador.phone) %></span>
|
53
|
+
<%= link_to ('tel:+' + number_to_phone(current_ambassador.phone)), title: 'Call ' + current_ambassador.name, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn' do %>
|
54
|
+
<i class="fa fa-fw fa-phone btn-action-icon"></i><span class="btn-action-label"><%= number_to_phone(current_ambassador.phone) %></span>
|
55
55
|
<% end %>
|
56
56
|
</div>
|
57
57
|
<% end %>
|
58
58
|
|
59
59
|
<% if current_ambassador.website %>
|
60
60
|
<div class="col-grid-float-6">
|
61
|
-
<%= link_to current_ambassador.website,
|
62
|
-
<i class="fa fa-link btn-action-icon"></i><span class="btn-action-label">
|
61
|
+
<%= link_to '//' + current_ambassador.website, title: current_ambassador.website, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn', target: '_blank' do %>
|
62
|
+
<i class="fa fa-fw fa-link btn-action-icon"></i><span class="btn-action-label">My Website</span>
|
63
63
|
<% end %>
|
64
64
|
</div>
|
65
65
|
<% end %>
|
66
66
|
|
67
67
|
<% if current_ambassador.facebook_url %>
|
68
68
|
<div class="col-grid-float-6">
|
69
|
-
<%= link_to current_ambassador.facebook_url,
|
70
|
-
<i class="fa fa-facebook btn-action-icon"></i><span class="btn-action-label">
|
69
|
+
<%= link_to '//' + current_ambassador.facebook_url, title: current_ambassador.facebook_url, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn', target: '_blank' do %>
|
70
|
+
<i class="fa fa-fw fa-facebook btn-action-icon"></i><span class="btn-action-label">My Facebook Page</span>
|
71
71
|
<% end %>
|
72
72
|
</div>
|
73
73
|
<% end %>
|
74
74
|
|
75
75
|
<% if current_ambassador.twitter_handle %>
|
76
76
|
<div class="col-grid-float-6">
|
77
|
-
<%= link_to current_ambassador.twitter_handle,
|
78
|
-
<i class="fa fa-twitter btn-action-icon"></i><span class="btn-action-label">
|
77
|
+
<%= link_to '//' + current_ambassador.twitter_handle, title: current_ambassador.twitter_handle, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn', target: '_blank' do %>
|
78
|
+
<i class="fa fa-fw fa-twitter btn-action-icon"></i><span class="btn-action-label">Follow me on Twitter</span>
|
79
79
|
<% end %>
|
80
80
|
</div>
|
81
81
|
<% end %>
|
82
82
|
|
83
83
|
<% if current_ambassador.instagram_url %>
|
84
84
|
<div class="col-grid-float-6">
|
85
|
-
<%= link_to current_ambassador.instagram_url,
|
86
|
-
<i class="fa fa-instagram btn-action-icon"></i><span class="btn-action-label">
|
85
|
+
<%= link_to '//' + current_ambassador.instagram_url, title: current_ambassador.instagram_url, class: 'btn btn-default btn-link btn-action dropdown-ambassador-contact_btn', target: '_blank' do %>
|
86
|
+
<i class="fa fa-fw fa-instagram btn-action-icon"></i><span class="btn-action-label">Follow me on Instagram</span>
|
87
87
|
<% end %>
|
88
88
|
</div>
|
89
89
|
<% end %>
|
data/app/views/forever_style_guide/sections/components/navigation/_nav_community_dropdown.erb
CHANGED
@@ -59,7 +59,7 @@
|
|
59
59
|
|
60
60
|
<ul class="list-unstyled">
|
61
61
|
<li>
|
62
|
-
<%= link_to 'Forever Live!', forever_live_url, class: 'dropdown-menu-nav-link', title: 'Scrapbooking and Memory Keeping Conference' %>
|
62
|
+
<%= link_to 'Forever Live!', forever_live_url, class: 'dropdown-menu-nav-link', title: 'Scrapbooking and Memory Keeping Conference', target: '_blank' %>
|
63
63
|
</li>
|
64
64
|
|
65
65
|
<li>
|
@@ -585835,3 +585835,230 @@ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-30 1
|
|
585835
585835
|
|
585836
585836
|
|
585837
585837
|
Started GET "/assets/application.css?body=1" for ::1 at 2016-08-30 17:36:25 -0400
|
585838
|
+
|
585839
|
+
|
585840
|
+
Started GET "/style_guide" for ::1 at 2016-09-01 11:41:54 -0400
|
585841
|
+
Processing by ForeverStyleGuide::StyleController#index as HTML
|
585842
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (2.3ms)
|
585843
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (13.8ms)
|
585844
|
+
Completed 200 OK in 301ms (Views: 300.5ms | ActiveRecord: 0.0ms)
|
585845
|
+
|
585846
|
+
|
585847
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585848
|
+
|
585849
|
+
|
585850
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585851
|
+
|
585852
|
+
|
585853
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585854
|
+
|
585855
|
+
|
585856
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585857
|
+
|
585858
|
+
|
585859
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585860
|
+
|
585861
|
+
|
585862
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585863
|
+
|
585864
|
+
|
585865
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585866
|
+
|
585867
|
+
|
585868
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585869
|
+
|
585870
|
+
|
585871
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585872
|
+
|
585873
|
+
|
585874
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585875
|
+
|
585876
|
+
|
585877
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585878
|
+
|
585879
|
+
|
585880
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585881
|
+
|
585882
|
+
|
585883
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585884
|
+
|
585885
|
+
|
585886
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-09-01 11:41:55 -0400
|
585887
|
+
|
585888
|
+
|
585889
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-09-01 11:41:55 -0400
|
585890
|
+
|
585891
|
+
|
585892
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585893
|
+
|
585894
|
+
|
585895
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585896
|
+
|
585897
|
+
|
585898
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585899
|
+
|
585900
|
+
|
585901
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585902
|
+
|
585903
|
+
|
585904
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585905
|
+
|
585906
|
+
|
585907
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585908
|
+
|
585909
|
+
|
585910
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585911
|
+
|
585912
|
+
|
585913
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585914
|
+
|
585915
|
+
|
585916
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-09-01 11:41:55 -0400
|
585917
|
+
|
585918
|
+
|
585919
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585920
|
+
|
585921
|
+
|
585922
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-09-01 11:41:55 -0400
|
585923
|
+
|
585924
|
+
|
585925
|
+
Started GET "/style_guide/components" for ::1 at 2016-09-01 11:41:58 -0400
|
585926
|
+
Processing by ForeverStyleGuide::StyleController#show as HTML
|
585927
|
+
Parameters: {"id"=>"components"}
|
585928
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.6ms)
|
585929
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (2.1ms)
|
585930
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_avatar.erb (3.7ms)
|
585931
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (35.8ms)
|
585932
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/shared/_feature_bullet.erb (2.6ms)
|
585933
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_feature_bullet.html.erb (10.6ms)
|
585934
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_footer.erb (0.6ms)
|
585935
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.5ms)
|
585936
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero.erb (0.6ms)
|
585937
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.6ms)
|
585938
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_hero_simple.erb (0.6ms)
|
585939
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (17.5ms)
|
585940
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_modals.erb (22.6ms)
|
585941
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (41.1ms)
|
585942
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_panel.erb (0.5ms)
|
585943
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.6ms)
|
585944
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_popover.erb (0.5ms)
|
585945
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (26.1ms)
|
585946
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_promo_banner.html.erb (0.6ms)
|
585947
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_sign_in.erb (0.5ms)
|
585948
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (18.6ms)
|
585949
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/components/_switch.erb (0.5ms)
|
585950
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (23.4ms)
|
585951
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (277.1ms)
|
585952
|
+
Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.9ms)
|
585953
|
+
Completed 200 OK in 404ms (Views: 404.0ms | ActiveRecord: 0.0ms)
|
585954
|
+
|
585955
|
+
|
585956
|
+
Started GET "/assets/application.css?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585957
|
+
|
585958
|
+
|
585959
|
+
Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-09-01 11:41:58 -0400
|
585960
|
+
|
585961
|
+
|
585962
|
+
Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585963
|
+
|
585964
|
+
|
585965
|
+
Started GET "/assets/jquery.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585966
|
+
|
585967
|
+
|
585968
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585969
|
+
|
585970
|
+
|
585971
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585972
|
+
|
585973
|
+
|
585974
|
+
Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585975
|
+
|
585976
|
+
|
585977
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585978
|
+
|
585979
|
+
|
585980
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585981
|
+
|
585982
|
+
|
585983
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585984
|
+
|
585985
|
+
|
585986
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585987
|
+
|
585988
|
+
|
585989
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585990
|
+
|
585991
|
+
|
585992
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585993
|
+
|
585994
|
+
|
585995
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585996
|
+
|
585997
|
+
|
585998
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
585999
|
+
|
586000
|
+
|
586001
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586002
|
+
|
586003
|
+
|
586004
|
+
Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586005
|
+
|
586006
|
+
|
586007
|
+
Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586008
|
+
|
586009
|
+
|
586010
|
+
Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586011
|
+
|
586012
|
+
|
586013
|
+
Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586014
|
+
|
586015
|
+
|
586016
|
+
Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-09-01 11:41:58 -0400
|
586017
|
+
|
586018
|
+
|
586019
|
+
Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-09-01 11:41:58 -0400
|
586020
|
+
|
586021
|
+
|
586022
|
+
Started GET "/assets/ProximaNova-Bold-webfont.woff" for ::1 at 2016-09-01 11:41:58 -0400
|
586023
|
+
|
586024
|
+
|
586025
|
+
Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586026
|
+
|
586027
|
+
|
586028
|
+
Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586029
|
+
|
586030
|
+
|
586031
|
+
Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586032
|
+
|
586033
|
+
|
586034
|
+
Started GET "/assets/style_guide/personas/ted_avatar.png" for ::1 at 2016-09-01 11:41:58 -0400
|
586035
|
+
|
586036
|
+
|
586037
|
+
Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-09-01 11:41:58 -0400
|
586038
|
+
|
586039
|
+
|
586040
|
+
Started GET "/assets/forever_style_guide/single-product.jpg" for ::1 at 2016-09-01 11:41:58 -0400
|
586041
|
+
|
586042
|
+
|
586043
|
+
Started GET "/assets/forever_style_guide/digiart1.png" for ::1 at 2016-09-01 11:41:58 -0400
|
586044
|
+
|
586045
|
+
|
586046
|
+
Started GET "/assets/forever_style_guide/digiart2.png" for ::1 at 2016-09-01 11:41:58 -0400
|
586047
|
+
|
586048
|
+
|
586049
|
+
Started GET "/assets/forever_style_guide/digiart3.png" for ::1 at 2016-09-01 11:41:58 -0400
|
586050
|
+
|
586051
|
+
|
586052
|
+
Started GET "/assets/forever_style_guide/contextualhelplassoanimation.gif" for ::1 at 2016-09-01 11:41:58 -0400
|
586053
|
+
|
586054
|
+
|
586055
|
+
Started GET "/assets/style_guide/hero/beach-girl.jpg" for ::1 at 2016-09-01 11:41:58 -0400
|
586056
|
+
|
586057
|
+
|
586058
|
+
Started GET "/assets/style_guide/hero/beach-girl-md.jpg" for ::1 at 2016-09-01 11:41:58 -0400
|
586059
|
+
|
586060
|
+
|
586061
|
+
Started GET "/assets/style_guide/modals/promobg.jpg" for ::1 at 2016-09-01 11:41:59 -0400
|
586062
|
+
|
586063
|
+
|
586064
|
+
Started GET "/assets/ProximaNova-Light-webfont.woff" for ::1 at 2016-09-01 11:42:01 -0400
|
@@ -0,0 +1 @@
|
|
1
|
+
28284
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forever_style_guide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicholas McClay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -2018,6 +2018,7 @@ files:
|
|
2018
2018
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/zpiSF7b2tCEa5uYdi_ZhgtZ5hJ3kx0UmJavVKtY2VQ8.cache
|
2019
2019
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/zt2mcoLMEdL3Q9CkbAvMrUmtawXNzNEKfxCXK1AZnXs.cache
|
2020
2020
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/zt42GhtRADSXMiAWk8X1cKO186J3hOfr37CUia4iYjQ.cache
|
2021
|
+
- test/dummy/tmp/pids/server.pid
|
2021
2022
|
- test/forever_style_guide_test.rb
|
2022
2023
|
- test/integration/navigation_test.rb
|
2023
2024
|
- test/scripts/benchmark-sass.sh
|
@@ -3698,6 +3699,7 @@ test_files:
|
|
3698
3699
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/zt42GhtRADSXMiAWk8X1cKO186J3hOfr37CUia4iYjQ.cache
|
3699
3700
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/zXplMIP285J6h3kJrYyl_pJf7kj2o1Wt7-N5dkzYgZ8.cache
|
3700
3701
|
- test/dummy/tmp/cache/assets/sprockets/v3.0/ZYPsf0aYWxpFMq1UPBpFyeNo6Yxk66vCc6PJETQGDJ0.cache
|
3702
|
+
- test/dummy/tmp/pids/server.pid
|
3701
3703
|
- test/forever_style_guide_test.rb
|
3702
3704
|
- test/integration/navigation_test.rb
|
3703
3705
|
- test/scripts/benchmark-sass.sh
|