forever_style_guide 3.2.3 → 3.2.4
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/helpers/forever_style_guide/application_helper.rb +7 -16
- data/app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown_menu.erb +1 -7
- data/app/views/forever_style_guide/sections/components/navigation/_nav_my_forever_dropdown.erb +4 -10
- data/lib/forever_style_guide/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 703681837b7ee1a6ec3f458c1d68a525055eacbb
|
|
4
|
+
data.tar.gz: a1e02c7e39a8cf51f386e77dc481eab8cd0f8a17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16f1914d8877cb7440073dce22981b162448daae8f225043aa51dd5f64e0f4a69332bd319b5c87ec2889b67b4a3ceb5a27dae4b88844af31d6790adf5c2fd225
|
|
7
|
+
data.tar.gz: 5eca081239f5c3f26ce9cdf9ae192cfa5644f28d838b6055deb6c5e8f001b1bbe8ef1bee04aa9537e7fd8a8d607eb3b7ed259f935ade4ff1480bb4df3616c94e
|
|
@@ -111,11 +111,6 @@ module ForeverStyleGuide
|
|
|
111
111
|
www_url('/admin')
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
def web_app_admin_url
|
|
115
|
-
# this probably goes away
|
|
116
|
-
('/app/admin')
|
|
117
|
-
end
|
|
118
|
-
|
|
119
114
|
def stop_impersonating_url
|
|
120
115
|
('/impersonations')
|
|
121
116
|
end
|
|
@@ -416,27 +411,23 @@ module ForeverStyleGuide
|
|
|
416
411
|
end
|
|
417
412
|
|
|
418
413
|
def zendesk_uploading_video_url
|
|
419
|
-
"https://forever1.zendesk.com/hc/en-us/articles/
|
|
420
|
-
end
|
|
421
|
-
|
|
422
|
-
def zendesk_organizing_video_url
|
|
423
|
-
"https://forever1.zendesk.com/hc/en-us/articles/222868828-Organizing-your-Forever-Inbox-Video-"
|
|
414
|
+
"https://forever1.zendesk.com/hc/en-us/articles/115000519251-Tutorial-Video-How-to-Upload"
|
|
424
415
|
end
|
|
425
416
|
|
|
426
417
|
def zendesk_sharing_video_url
|
|
427
|
-
"https://forever1.zendesk.com/hc/en-us/articles/
|
|
418
|
+
"https://forever1.zendesk.com/hc/en-us/articles/115000519131-Tutorial-Video-How-to-Share-with-Friends-and-Family"
|
|
428
419
|
end
|
|
429
420
|
|
|
430
421
|
def zendesk_albums_video_url
|
|
431
|
-
"https://forever1.zendesk.com/hc/en-us/articles/
|
|
422
|
+
"https://forever1.zendesk.com/hc/en-us/articles/115000519171-Tutorial-Video-Organizing-with-Albums"
|
|
432
423
|
end
|
|
433
424
|
|
|
434
|
-
def
|
|
435
|
-
"https://forever1.zendesk.com/hc/en-us/articles/
|
|
425
|
+
def zendesk_tags_video_url
|
|
426
|
+
"https://forever1.zendesk.com/hc/en-us/articles/115000519211-Tutorial-Video-Tagging-in-Forever-"
|
|
436
427
|
end
|
|
437
428
|
|
|
438
|
-
def
|
|
439
|
-
"https://forever1.zendesk.com/hc/en-us/articles/
|
|
429
|
+
def zendesk_projects_video_url
|
|
430
|
+
"https://forever1.zendesk.com/hc/en-us/articles/115000519471-Tutorial-Video-Print-Projects"
|
|
440
431
|
end
|
|
441
432
|
|
|
442
433
|
# Path helpers for style guide dummy app
|
data/app/views/forever_style_guide/sections/components/navigation/_nav_account_dropdown_menu.erb
CHANGED
|
@@ -19,13 +19,7 @@
|
|
|
19
19
|
<% if current_user.superadmin? %>
|
|
20
20
|
<li class="dropdown-menu-account-item">
|
|
21
21
|
<%= link_to store_admin_url, class: 'dropdown-menu-nav-link dropdown-menu-nav-link-sm dropdown-menu-nav-link-no_margin', title: 'Administer The Forever Store' do %>
|
|
22
|
-
<i class='fa fa-
|
|
23
|
-
<% end %>
|
|
24
|
-
</li>
|
|
25
|
-
|
|
26
|
-
<li class="dropdown-menu-account-item">
|
|
27
|
-
<%= link_to web_app_admin_url, class: 'dropdown-menu-nav-link dropdown-menu-nav-link-sm dropdown-menu-nav-link-no_margin', title: 'Administer The Forever Web App' do %>
|
|
28
|
-
<i class='fa fa-magic fa-fw'></i>Web App Admin
|
|
22
|
+
<i class='fa fa-shield fa-fw'></i>Admin
|
|
29
23
|
<% end %>
|
|
30
24
|
</li>
|
|
31
25
|
|
data/app/views/forever_style_guide/sections/components/navigation/_nav_my_forever_dropdown.erb
CHANGED
|
@@ -93,12 +93,6 @@
|
|
|
93
93
|
<% end %>
|
|
94
94
|
</li>
|
|
95
95
|
|
|
96
|
-
<li>
|
|
97
|
-
<%= link_to zendesk_organizing_video_url, class: 'dropdown-menu-nav-link', title: 'View the Organizing Photos Tutorial Video', target: '_blank' do %>
|
|
98
|
-
<i class='fa fa-video-camera'></i>Getting Organized
|
|
99
|
-
<% end %>
|
|
100
|
-
</li>
|
|
101
|
-
|
|
102
96
|
<li>
|
|
103
97
|
<%= link_to zendesk_sharing_video_url, class: 'dropdown-menu-nav-link', title: 'View the Sharing Photos Tutorial Video', target: '_blank' do %>
|
|
104
98
|
<i class='fa fa-video-camera'></i>Sharing
|
|
@@ -118,14 +112,14 @@
|
|
|
118
112
|
</li>
|
|
119
113
|
|
|
120
114
|
<li>
|
|
121
|
-
<%= link_to
|
|
122
|
-
<i class='fa fa-video-camera'></i>
|
|
115
|
+
<%= link_to zendesk_tags_video_url, class: 'dropdown-menu-nav-link', title: 'Organizing Photos with Tags in Forever - Video Tutorial', target: '_blank' do %>
|
|
116
|
+
<i class='fa fa-video-camera'></i>Tags
|
|
123
117
|
<% end %>
|
|
124
118
|
</li>
|
|
125
119
|
|
|
126
120
|
<li>
|
|
127
|
-
<%= link_to
|
|
128
|
-
<i class='fa fa-video-camera'></i>
|
|
121
|
+
<%= link_to zendesk_projects_video_url, class: 'dropdown-menu-nav-link', title: 'Printing with Forever Artisan® - Video Tutorial', target: '_blank' do %>
|
|
122
|
+
<i class='fa fa-video-camera'></i>Print Projects
|
|
129
123
|
<% end %>
|
|
130
124
|
</li>
|
|
131
125
|
</ul>
|
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.2.
|
|
4
|
+
version: 3.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicholas McClay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -315,9 +315,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
315
315
|
version: '0'
|
|
316
316
|
requirements: []
|
|
317
317
|
rubyforge_project:
|
|
318
|
-
rubygems_version: 2.
|
|
318
|
+
rubygems_version: 2.6.12
|
|
319
319
|
signing_key:
|
|
320
320
|
specification_version: 4
|
|
321
321
|
summary: A live style guide and component API for the Forever brand
|
|
322
322
|
test_files: []
|
|
323
|
-
has_rdoc:
|