forever_style_guide 3.0.11 → 3.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb003ebace3c407f7fc18806c5799a60ebccd283
4
- data.tar.gz: e04c379e57ec8cdd58d412f592c30f3dc68e55be
3
+ metadata.gz: f4cd43c6b0b590d15776c5a2479ff9e2227ca647
4
+ data.tar.gz: 7fdd99575db08006ea31b4c1fe2a7141533771ec
5
5
  SHA512:
6
- metadata.gz: 9d0d8bb37424da4e3c653be1e37f085e41fd8e93d1f9a4c4e7c2c0e74fb0e24071eb841611aa5c3e5f5eb865cf1ce403ad590dc8d92bcf798089fc3c9390b792
7
- data.tar.gz: 1ceb9a6698e7dac3c2f73d5c4e2c4896136b76ad1901255f869a1e1c70f8485a684e656348410049d585c335ddb1f022f5e97fe2b67e5b49dd863bccf279deed
6
+ metadata.gz: 95ea1f620f4fe0552b3e8185d9e9d81f706b8665748bb5ccdf6324b3c8fb2a92099c80fbd45347ae8af88026bd27f2ab2725ae3aaa6a1cdb6f62b44458bcded1
7
+ data.tar.gz: 1bc23af396920133a38a0b34fa5ed31ecf332411d90ff334013f35fc704cb6ffd282ef59cadfc8f8f13a63fb3d4eae9a81fa1e34b2c0fde9a4630361a6322ad3
@@ -12,10 +12,6 @@ module ForeverStyleGuide
12
12
  strip_subdomain("my", path, url)
13
13
  end
14
14
 
15
- def store_url(path = '/', url = nil)
16
- strip_subdomain("store", path, url)
17
- end
18
-
19
15
  def strip_subdomain(sub, path = '/', url = nil)
20
16
  url ||= request.url if respond_to?(:request)
21
17
  url = URI(url)
@@ -43,14 +39,6 @@ module ForeverStyleGuide
43
39
  end
44
40
 
45
41
  # Web App Paths
46
- def login_url
47
- web_app_url('/login')
48
- end
49
-
50
- def sign_up_url
51
- web_app_url('/signup')
52
- end
53
-
54
42
  def library_url
55
43
  web_app_url('/inbox')
56
44
  end
@@ -68,14 +56,22 @@ module ForeverStyleGuide
68
56
  end
69
57
 
70
58
  def user_settings_url
71
- web_app_url('/settings') # TODO something not quite right here
59
+ web_app_url('/settings') # TODO story against webapp to make this behave consistently
60
+ end
61
+
62
+ # Combined Store/WWW Paths - now all available at www.forever.com
63
+ def login_url
64
+ www_url('/sign_in')
72
65
  end
73
66
 
74
67
  def log_out_url
75
- web_app_url('/logout') # TODO something not quite right here
68
+ www_url('/log_out') # TODO store should handle this and redirect_to
69
+ end
70
+
71
+ def sign_up_url
72
+ www_url('/sign_up')
76
73
  end
77
74
 
78
- # Marketing Site Paths
79
75
  def marketing_home_url
80
76
  www_url('/')
81
77
  end
@@ -109,11 +105,11 @@ module ForeverStyleGuide
109
105
  end
110
106
 
111
107
  def historian_url
112
- store_url('/historian')
108
+ www_url('/historian')
113
109
  end
114
110
 
115
111
  def artisan_url
116
- store_url('/artisan')
112
+ www_url('/artisan')
117
113
  end
118
114
 
119
115
  def projects_marketing_url
@@ -125,7 +121,7 @@ module ForeverStyleGuide
125
121
  end
126
122
 
127
123
  def shipping_info_url
128
- store_url('/shipping')
124
+ www_url('/shipping')
129
125
  end
130
126
 
131
127
  def bulk_orders_url
@@ -133,7 +129,7 @@ module ForeverStyleGuide
133
129
  end
134
130
 
135
131
  def return_policy_url
136
- store_url('/returns')
132
+ www_url('/returns')
137
133
  end
138
134
 
139
135
  def p2p_url
@@ -141,11 +137,11 @@ module ForeverStyleGuide
141
137
  end
142
138
 
143
139
  def customer_commitments_url
144
- store_url('/commitments')
140
+ www_url('/commitments')
145
141
  end
146
142
 
147
143
  def opportunity_url
148
- store_url('/opportunity')
144
+ www_url('/opportunity')
149
145
  end
150
146
 
151
147
  def retreats_url
@@ -156,93 +152,92 @@ module ForeverStyleGuide
156
152
  www_url('/about/press')
157
153
  end
158
154
 
159
- # Store Paths
160
155
  def cart_url
161
- store_url('/cart')
156
+ www_url('/cart')
162
157
  end
163
158
 
164
159
  def services_url
165
- store_url('/services')
160
+ www_url('/services')
166
161
  end
167
162
 
168
163
  def digital_art_url
169
- store_url('/digital_art')
164
+ www_url('/digital_art')
170
165
  end
171
166
 
172
167
  def new_digital_art_url
173
- store_url('/new_digital_art')
168
+ www_url('/new_digital_art')
174
169
  end
175
170
 
176
171
  def sale_digital_art_url
177
- store_url('/sale_digital_art')
172
+ www_url('/sale_digital_art')
178
173
  end
179
174
 
180
175
  def all_digital_art_url
181
- store_url('/all_digital_art')
176
+ www_url('/all_digital_art')
182
177
  end
183
178
 
184
179
  def print_url
185
- store_url('/print')
180
+ www_url('/print')
186
181
  end
187
182
 
188
183
  def photo_books_url
189
- store_url('/photobooks')
184
+ www_url('/photobooks')
190
185
  end
191
186
 
192
187
  def cards_url
193
- store_url('/cards')
188
+ www_url('/cards')
194
189
  end
195
190
 
196
191
  def calendars_url
197
- store_url('/calendars')
192
+ www_url('/calendars')
198
193
  end
199
194
 
200
195
  def wall_art_url
201
- store_url('/wall_art')
196
+ www_url('/wall_art')
202
197
  end
203
198
 
204
199
  def photo_gifts_url
205
- store_url('/photo_gifts')
200
+ www_url('/photo_gifts')
206
201
  end
207
202
 
208
203
  def page_prints_url
209
- store_url('/page_prints')
204
+ www_url('/page_prints')
210
205
  end
211
206
 
212
207
  def gift_certificate_url
213
- store_url('/gift_certificates')
208
+ www_url('/gift_certificates')
214
209
  end
215
210
 
216
211
  def gift_certificate_url
217
- store_url('/gift_certificates')
212
+ www_url('/gift_certificates')
218
213
  end
219
214
 
220
215
  def gifts_url
221
- store_url('/gifts')
216
+ www_url('/gifts')
222
217
  end
223
218
 
224
219
  def find_ambassador_url
225
- store_url('/find_ambassador')
220
+ www_url('/find_ambassador')
226
221
  end
227
222
 
228
223
  def ambassador_direct_url
229
- store_url('/ambassador-direct')
224
+ www_url('/ambassador-direct')
230
225
  end
231
226
 
232
227
  def upgrade_url
233
- store_url('/upgrade')
228
+ www_url('/upgrade')
234
229
  end
235
230
 
236
231
  def back_office_url
237
- store_url('/back_office')
232
+ www_url('/back_office')
238
233
  end
239
234
 
240
235
  def tos_url
241
- store_url('/tos')
236
+ www_url('/tos')
242
237
  end
243
238
 
244
239
  def privacy_url
245
- store_url('/privacy')
240
+ www_url('/privacy')
246
241
  end
247
242
 
248
243
  # External Paths
@@ -1,3 +1,3 @@
1
1
  module ForeverStyleGuide
2
- VERSION = "3.0.11"
2
+ VERSION = "3.0.12"
3
3
  end
@@ -543811,3 +543811,260 @@ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-01 1
543811
543811
 
543812
543812
 
543813
543813
  Started GET "/assets/application.css?body=1" for ::1 at 2016-08-01 10:39:08 -0400
543814
+
543815
+
543816
+ Started GET "/style_guide" for ::1 at 2016-08-01 16:31:33 -0400
543817
+ Processing by ForeverStyleGuide::StyleController#index as HTML
543818
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (0.5ms)
543819
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.8ms)
543820
+ Completed 200 OK in 122ms (Views: 121.6ms | ActiveRecord: 0.0ms)
543821
+
543822
+
543823
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543824
+
543825
+
543826
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543827
+
543828
+
543829
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543830
+
543831
+
543832
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543833
+
543834
+
543835
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543836
+
543837
+
543838
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543839
+
543840
+
543841
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543842
+
543843
+
543844
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543845
+
543846
+
543847
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543848
+
543849
+
543850
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543851
+
543852
+
543853
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543854
+
543855
+
543856
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543857
+
543858
+
543859
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543860
+
543861
+
543862
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543863
+
543864
+
543865
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543866
+
543867
+
543868
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543869
+
543870
+
543871
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543872
+
543873
+
543874
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543875
+
543876
+
543877
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543878
+
543879
+
543880
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543881
+
543882
+
543883
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543884
+
543885
+
543886
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543887
+
543888
+
543889
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-01 16:31:34 -0400
543890
+
543891
+
543892
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-01 16:31:34 -0400
543893
+
543894
+
543895
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-01 16:31:34 -0400
543896
+
543897
+
543898
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-01 16:31:34 -0400
543899
+
543900
+
543901
+ Started GET "/style_guide/branding" for ::1 at 2016-08-01 16:31:45 -0400
543902
+ Processing by ForeverStyleGuide::StyleController#show as HTML
543903
+ Parameters: {"id"=>"branding"}
543904
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_header.erb (0.4ms)
543905
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_sidebar.erb (0.4ms)
543906
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/sections/branding/_colors.erb (2.2ms)
543907
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/_partial.erb (27.3ms)
543908
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/show.html.erb within layouts/forever_style_guide/application (33.4ms)
543909
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (1.6ms)
543910
+ Completed 200 OK in 160ms (Views: 159.2ms | ActiveRecord: 0.0ms)
543911
+
543912
+
543913
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543914
+
543915
+
543916
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543917
+
543918
+
543919
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543920
+
543921
+
543922
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543923
+
543924
+
543925
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543926
+
543927
+
543928
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543929
+
543930
+
543931
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543932
+
543933
+
543934
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543935
+
543936
+
543937
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543938
+
543939
+
543940
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543941
+
543942
+
543943
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543944
+
543945
+
543946
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543947
+
543948
+
543949
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543950
+
543951
+
543952
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543953
+
543954
+
543955
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543956
+
543957
+
543958
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543959
+
543960
+
543961
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543962
+
543963
+
543964
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543965
+
543966
+
543967
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543968
+
543969
+
543970
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543971
+
543972
+
543973
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543974
+
543975
+
543976
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543977
+
543978
+
543979
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-01 16:31:46 -0400
543980
+
543981
+
543982
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-01 16:31:51 -0400
543983
+
543984
+
543985
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-08-01 16:31:51 -0400
543986
+
543987
+
543988
+ Started GET "/style_guide" for ::1 at 2016-08-02 08:19:04 -0400
543989
+ Processing by ForeverStyleGuide::StyleController#index as HTML
543990
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/forever_style_guide/style/index.html.erb within layouts/forever_style_guide/application (0.5ms)
543991
+ Rendered /Users/zschweitzer/git/forever-style-guide/app/views/layouts/forever_style_guide/_navigation.erb (3.0ms)
543992
+ Completed 200 OK in 126ms (Views: 125.1ms | ActiveRecord: 0.0ms)
543993
+
543994
+
543995
+ Started GET "/assets/application.css?body=1" for ::1 at 2016-08-02 08:19:04 -0400
543996
+
543997
+
543998
+ Started GET "/assets/style_guide/application.css?body=1" for ::1 at 2016-08-02 08:19:04 -0400
543999
+
544000
+
544001
+ Started GET "/assets/jquery.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544002
+
544003
+
544004
+ Started GET "/assets/bootstrap/affix.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544005
+
544006
+
544007
+ Started GET "/assets/bootstrap/button.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544008
+
544009
+
544010
+ Started GET "/assets/bootstrap/alert.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544011
+
544012
+
544013
+ Started GET "/assets/bootstrap/modal.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544014
+
544015
+
544016
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544017
+
544018
+
544019
+ Started GET "/assets/bootstrap/carousel.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544020
+
544021
+
544022
+ Started GET "/assets/bootstrap/collapse.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544023
+
544024
+
544025
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544026
+
544027
+
544028
+ Started GET "/assets/bootstrap/transition.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544029
+
544030
+
544031
+ Started GET "/assets/bootstrap/tab.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544032
+
544033
+
544034
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544035
+
544036
+
544037
+ Started GET "/assets/bootstrap/popover.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544038
+
544039
+
544040
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544041
+
544042
+
544043
+ Started GET "/assets/style_guide/application.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544044
+
544045
+
544046
+ Started GET "/assets/forever_style_guide/account-popover.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544047
+
544048
+
544049
+ Started GET "/assets/forever_style_guide/hero-blur.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544050
+
544051
+
544052
+ Started GET "/assets/forever_style_guide/list-toggle.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544053
+
544054
+
544055
+ Started GET "/assets/forever_style_guide/offcanvas.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544056
+
544057
+
544058
+ Started GET "/assets/forever_style_guide/popover.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544059
+
544060
+
544061
+ Started GET "/assets/forever_style_guide/application.js?body=1" for ::1 at 2016-08-02 08:19:04 -0400
544062
+
544063
+
544064
+ Started GET "/assets/forever_style_guide/forever-logo.jpg" for ::1 at 2016-08-02 08:19:04 -0400
544065
+
544066
+
544067
+ Started GET "/assets/ProximaNova-Reg-webfont.woff" for ::1 at 2016-08-02 08:19:04 -0400
544068
+
544069
+
544070
+ Started GET "/assets/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2016-08-02 08:19:04 -0400
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.11
4
+ version: 3.0.12
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-08-01 00:00:00.000000000 Z
11
+ date: 2016-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails