-
Notifications
You must be signed in to change notification settings - Fork 0
/
out
1514 lines (1514 loc) · 205 KB
/
out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015-01-07T19:27:15.584687+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-07T19:27:15.584692+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-07T19:27:15.584735+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-07T19:27:15.584742+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-07T19:27:15.584664+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-07T19:27:15.584771+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-07T19:27:15.584739+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-07T19:27:15.584697+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-07T19:27:15.584750+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-07T19:27:15.584764+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-07T19:27:15.584752+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-07T19:27:15.584737+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-07T19:27:15.584713+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-07T19:27:15.584778+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-07T19:27:15.584790+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-07T19:27:15.584776+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-07T19:27:15.584782+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-07T19:27:15.584825+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-07T19:27:15.584784+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-07T19:27:15.584837+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-07T19:27:15.584673+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-07T19:27:15.584836+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-07T19:27:15.584772+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-07T19:27:15.584834+00:00 app[web.1
]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-07T19:27:15.584827+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-07T19:27:15.584788+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-07T19:27:15.584839+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-07T19:27:15.584681+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-07T19:27:15.584847+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-07T19:27:15.584853+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-07T19:27:15.584851+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-07T19:27:15.584724+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-07T19:27:15.584747+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-07T19:27:15.584686+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-07T19:27:15.584684+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-07T19:27:15.584759+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-07T19:27:15.584706+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-07T19:27:15.584700+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-07T19:27:15.584722+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-07T19:27:15.584712+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.
1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-07T19:27:15.584741+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-07T19:27:15.584756+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-07T19:27:15.584765+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-07T19:27:15.584758+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-07T19:27:15.584829+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-07T19:27:15.584767+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-07T19:27:15.584855+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-07T19:27:15.584844+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-07T19:27:15.584846+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-07T19:27:16.389530+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-07T19:27:16.374858+00:00 heroku[web.1]: Process exited with status 1
2015-01-08T09:59:48.229414+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-08T09:59:53.068394+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 18117 -e production`
2015-01-08T09:59:58.035973+00:00 app[web.1]: => Booting WEBrick
2015-01-08T09:59:58.035999+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-08T09:59:58.035993+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:18117
2015-01-08T09:59:58.035995+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-08T09:59:58.035998+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-08T09:59:58.036001+00:00 app[web.1]: Exiting
2015-01-08T09:59:58.036041+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T09:59:58.036045+00:00 app[web.1]: ^
2015-01-08T09:59:58.036047+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-08T09:59:58.036039+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-08T09:59:58.036043+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T09:59:58.036055+00:00 app[web.1]: ^
2015-01-08T09:59:58.036048+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T09:59:58.036054+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T09:59:58.036050+00:00 app[web.1]: ^
2015-01-08T09:59:58.036057+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T09:59:58.036059+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-08T09:59:58.036052+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-08T09:59:58.036062+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T09:59:58.036064+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-08T09:59:58.036066+00:00 app[web.1]: ... ^
2015-01-08T09:59:58.036068+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T09:59:58.036069+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-08T09:59:58.036071+00:00 app[web.1]: ... ^
2015-01-08T09:59:58.036072+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-08T09:59:58.036074+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-08T09:59:58.036076+00:00 app[web.1]: ... ^
2015-01-08T09:59:58.036077+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-08T09:59:58.036061+00:00 app[web.1]: ^
2015-01-08T09:59:58.036082+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-08T09:59:58.036084+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T09:59:58.036086+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T09:59:58.036091+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-08T09:59:58.036092+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-08T09:59:58.036096+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-08T09:59:58.036098+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-08T09:59:58.036101+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-08T09:59:58.036103+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-08T09:59:58.036105+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-08T09:59:58.036110+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036099+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-08T09:59:58.036111+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T09:59:58.036113+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T09:59:58.036114+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036087+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036119+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-08T09:59:58.036118+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-08T09:59:58.036167+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-08T09:59:58.036168+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-08T09:59:58.036218+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-08T09:59:58.036222+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036224+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T09:59:58.036227+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T09:59:58.036089+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T09:59:58.036242+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T09:59:58.036123+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-08T09:59:58.036249+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T09:59:58.036251+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036253+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T09:59:58.036256+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-08T09:59:58.036257+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-08T09:59:58.036259+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-08T09:59:58.036229+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036095+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-08T09:59:58.036286+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-08T09:59:58.036287+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-08T09:59:58.036254+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-08T09:59:58.036276+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-08T09:59:58.036268+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-08T09:59:58.036236+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-08T09:59:58.036160+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-08T09:59:58.036273+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-08T09:59:58.036269+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-08T09:59:58.036315+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-08T09:59:58.036297+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-08T09:59:58.036261+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-08T09:59:58.036116+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T09:59:58.036231+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T09:59:58.036296+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-08T09:59:58.036289+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-08T09:59:58.036291+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-08T09:59:58.036292+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-08T09:59:58.036299+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-08T09:59:58.036342+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-08T09:59:58.036322+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-08T09:59:58.036271+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-08T09:59:58.036312+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036334+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-08T09:59:58.036125+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-08T09:59:58.036308+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T09:59:58.036162+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-08T09:59:58.036301+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-08T09:59:58.036238+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-08T09:59:58.036305+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-08T09:59:58.036318+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-08T09:59:58.036310+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T09:59:58.036307+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036337+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-08T09:59:58.036263+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-08T09:59:58.036324+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-08T09:59:58.036329+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-08T09:59:58.036331+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-08T09:59:58.036351+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-08T09:59:58.036317+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-08T09:59:58.036233+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-08T09:59:58.036332+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-08T09:59:58.036346+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-08T09:59:58.036266+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-08T09:59:58.036347+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-08T09:59:58.036349+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-08T09:59:58.036326+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-08T09:59:58.036240+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T09:59:58.036264+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-08T09:59:58.036274+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-08T09:59:58.036313+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-08T09:59:58.036321+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-08T09:59:58.036294+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-08T09:59:58.036336+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-08T09:59:58.036344+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-08T09:59:58.036327+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-08T09:59:58.993747+00:00 heroku[web.1]: Process exited with status 1
2015-01-08T09:59:59.008385+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-08T18:08:03.710427+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-08T18:08:08.211681+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 10766 -e production`
2015-01-08T18:08:12.077016+00:00 app[web.1]: Exiting
2015-01-08T18:08:12.077038+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T18:08:12.077051+00:00 app[web.1]: ^
2015-01-08T18:08:12.077053+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T18:08:12.077042+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-08T18:08:12.077044+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T18:08:12.077036+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T18:08:12.077049+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-08T18:08:12.077058+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T18:08:12.077067+00:00 app[web.1]: ... ^
2015-01-08T18:08:12.077061+00:00 app[web.1]: ... ^
2015-01-08T18:08:12.077065+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-08T18:08:12.077081+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T18:08:12.077075+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-08T18:08:12.077087+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-08T18:08:12.077089+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-08T18:08:12.077068+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-08T18:08:12.077055+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-08T18:08:12.077070+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-08T18:08:12.076988+00:00 app[web.1]: => Booting WEBrick
2015-01-08T18:08:12.077010+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-08T18:08:12.077086+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-08T18:08:12.077091+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-08T18:08:12.077008+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:10766
2015-01-08T18:08:12.077012+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-08T18:08:12.077071+00:00 app[web.1]: ... ^
2015-01-08T18:08:12.077073+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-08T18:08:12.077079+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T18:08:12.077082+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077014+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-08T18:08:12.077040+00:00 app[web.1]: ^
2015-01-08T18:08:12.077045+00:00 app[web.1]: ^
2015-01-08T18:08:12.077048+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-08T18:08:12.077060+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-08T18:08:12.077101+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-08T18:08:12.077032+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-08T18:08:12.077056+00:00 app[web.1]: ^
2015-01-08T18:08:12.077063+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-08T18:08:12.077084+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T18:08:12.077102+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-08T18:08:12.077104+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077109+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077095+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-08T18:08:12.077107+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T18:08:12.077122+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-08T18:08:12.077142+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-08T18:08:12.077106+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T18:08:12.077151+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077160+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T18:08:12.077094+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-08T18:08:12.077113+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T18:08:12.077154+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T18:08:12.077165+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-08T18:08:12.077118+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-08T18:08:12.077163+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-08T18:08:12.077170+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T18:08:12.077146+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-08T18:08:12.077150+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-08T18:08:12.077161+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-08T18:08:12.077173+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077116+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-08T18:08:12.077166+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077140+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-08T18:08:12.077148+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-08T18:08:12.077153+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T18:08:12.077156+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077172+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T18:08:12.077092+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-08T18:08:12.077114+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-08T18:08:12.077177+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-08T18:08:12.077196+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-08T18:08:12.077203+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-08T18:08:12.077180+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-08T18:08:12.077209+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-08T18:08:12.077242+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-08T18:08:12.077184+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-08T18:08:12.077213+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-08T18:08:12.077225+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-08T18:08:12.077232+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-08T18:08:12.077261+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-08T18:08:12.077179+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-08T18:08:12.077192+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-08T18:08:12.077201+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-08T18:08:12.077271+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-08T18:08:12.077276+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-08T18:08:12.077190+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-08T18:08:12.077267+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-08T18:08:12.077186+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-08T18:08:12.077214+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-08T18:08:12.077231+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-08T18:08:12.077238+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-08T18:08:12.077250+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-08T18:08:12.077197+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-08T18:08:12.077227+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-08T18:08:12.077248+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-08T18:08:12.077254+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-08T18:08:12.077256+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077207+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-08T18:08:12.077237+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-08T18:08:12.077265+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-08T18:08:12.077289+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-08T18:08:12.077244+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-08T18:08:12.077260+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-08T18:08:12.077296+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-08T18:08:12.077300+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-08T18:08:12.077312+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-08T18:08:12.077272+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-08T18:08:12.077294+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-08T18:08:12.077304+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-08T18:08:12.077328+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-08T18:08:12.077279+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-08T18:08:12.077308+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-08T18:08:12.077316+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-08T18:08:12.077283+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-08T18:08:12.077290+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-08T18:08:12.077329+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-08T18:08:12.077324+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-08T18:08:12.077322+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-08T18:08:12.077285+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-08T18:08:12.077318+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-08T18:08:12.988478+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-08T18:08:12.978853+00:00 heroku[web.1]: Process exited with status 1
2015-01-09T10:41:06.274303+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-09T10:41:09.094363+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 33759 -e production`
2015-01-09T10:41:11.699284+00:00 app[web.1]: => Run `
rails server -h` for more startup options
2015-01-09T10:41:11.699288+00:00 app[web.1]: Exiting
2015-01-09T10:41:11.699299+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-09T10:41:11.699282+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:33759
2015-01-09T10:41:11.699265+00:00 app[web.1]: => Booting WEBrick
2015-01-09T10:41:11.699302+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-09T10:41:11.699285+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-09T10:41:11.699305+00:00 app[web.1]: ^
2015-01-09T10:41:11.699314+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-09T10:41:11.699309+00:00 app[web.1]: ^
2015-01-09T10:41:11.699310+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-09T10:41:11.699286+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-09T10:41:11.699308+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-09T10:41:11.699318+00:00 app[web.1]: ^
2015-01-09T10:41:11.699316+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-09T10:41:11.699304+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-09T10:41:11.699313+00:00 app[web.1]: ^
2015-01-09T10:41:11.699306+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-09T10:41:11.699327+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-09T10:41:11.699311+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-09T10:41:11.699325+00:00 app[web.1]: ... ^
2015-01-09T10:41:11.699320+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-09T10:41:11.699348+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-09T10:41:11.699322+00:00 app[web.1]: ... ^
2015-01-09T10:41:11.699319+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-09T10:41:11.699323+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-09T10:41:11.699347+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-09T10:41:11.699328+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-09T10:41:11.699353+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-09T10:41:11.699357+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-09T10:41:11.699356+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699354+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-09T10:41:11.699361+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-09T10:41:11.699324+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-09T10:41:11.699363+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-09T10:41:11.699366+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-09T10:41:11.699365+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-09T10:41:11.699371+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-09T10:41:11.699362+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-09T10:41:11.699372+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699376+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699374+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-09T10:41:11.699377+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-09T10:41:11.699345+00:00 app[web.1]: ... ^
2015-01-09T10:41:11.699378+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-09T10:41:11.699379+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-09T10:41:11.699375+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-09T10:41:11.699422+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-09T10:41:11.699433+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-09T10:41:11.699426+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-09T10:41:11.699447+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-09T10:41:11.699438+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-09T10:41:11.699381+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-09T10:41:11.699358+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-09T10:41:11.699434+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-09T10:41:11.699435+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699442+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-09T10:41:11.699452+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-09T10:41:11.699451+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-09T10:41:11.699448+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-09T10:41:11.699458+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-09T10:41:11.699436+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-09T10:41:11.699450+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-09T10:41:11.699462+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-09T10:41:11.699455+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-09T10:41:11.699456+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-09T10:41:11.699461+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-09T10:41:11.699445+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699384+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-09T10:41:11.699360+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-09T10:41:11.699441+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699464+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-09T10:41:11.699471+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-09T10:41:11.699476+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-09T10:41:11.699481+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-09T10:41:11.699483+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-09T10:41:11.699424+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-09T10:41:11.699368+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-09T10:41:11.699444+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-09T10:41:11.699484+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-09T10:41:11.699489+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699490+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-09T10:41:11.699495+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-09T10:41:11.699492+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699499+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-09T10:41:11.699459+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-09T10:41:11.699425+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-09T10:41:11.699430+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-09T10:41:11.699446+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-09T10:41:11.699491+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-09T10:41:11.699460+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-09T10:41:11.699432+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-09T10:41:11.699439+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-09T10:41:11.699505+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-09T10:41:11.699465+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-09T10:41:11.699503+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-09T10:41:11.699511+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-09T10:41:11.699513+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-09T10:41:11.699509+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-09T10:41:11.699474+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-09T10:41:11.699440+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-09T10:41:11.699477+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-09T10:41:11.699542+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-09T10:41:11.699539+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-09T10:41:11.699482+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-09T10:41:11.699537+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-09T10:41:11.699478+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-09T10:41:11.699498+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-09T10:41:11.699544+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-09T10:41:11.699549+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-09T10:41:11.699479+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-09T10:41:11.699545+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-09T10:41:11.699502+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-09T10:41:11.699496+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-09T10:41:11.699516+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-09T10:41:11.699488+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-09T10:41:1
1.699508+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-09T10:41:11.699548+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-09T10:41:11.699550+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-09T10:41:11.699553+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-09T10:41:12.456415+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-09T10:41:12.442465+00:00 heroku[web.1]: Process exited with status 1
2015-01-12T03:15:36.380995+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-12T03:15:39.666434+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 22945 -e production`
2015-01-12T03:15:43.279792+00:00 app[web.1]: => Booting WEBrick
2015-01-12T03:15:43.279809+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:22945
2015-01-12T03:15:43.279812+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-12T03:15:43.279970+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-12T03:15:43.279814+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-12T03:15:43.279815+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-12T03:15:43.279863+00:00 app[web.1]: Exiting
2015-01-12T03:15:43.279974+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-12T03:15:43.279981+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-12T03:15:43.279978+00:00 app[web.1]: ^
2015-01-12T03:15:43.279976+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-12T03:15:43.279979+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-12T03:15:43.279994+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-12T03:15:43.279996+00:00 app[web.1]: ... ^
2015-01-12T03:15:43.280004+00:00 app[web.1]: ... ^
2015-01-12T03:15:43.279982+00:00 app[web.1]: ^
2015-01-12T03:15:43.279985+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-12T03:15:43.280007+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-12T03:15:43.280018+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-12T03:15:43.279993+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-12T03:15:43.279984+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-12T03:15:43.279990+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-12T03:15:43.280014+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280015+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-12T03:15:43.280010+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-12T03:15:43.280016+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-12T03:15:43.280000+00:00 app[web.1]: ... ^
2015-01-12T03:15:43.280021+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-12T03:15:43.280022+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-12T03:15:43.280025+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-12T03:15:43.279989+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-12T03:15:43.280024+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-12T03:15:43.279987+00:00 app[web.1]: ^
2015-01-12T03:15:43.279999+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-12T03:15:43.280001+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-12T03:15:43.280031+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-12T03:15:43.280038+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-12T03:15:43.280041+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-12T03:15:43.279991+00:00 app[web.1]: ^
2015-01-12T03:15:43.279997+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-12T03:15:43.280005+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-12T03:15:43.280012+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-12T03:15:43.280035+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-12T03:15:43.280036+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280065+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-12T03:15:43.280003+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-12T03:15:43.280020+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-12T03:15:43.280029+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-12T03:15:43.280071+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-12T03:15:43.280074+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-12T03:15:43.280076+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-12T03:15:43.280078+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-12T03:15:43.280111+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280032+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280034+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-12T03:15:43.280184+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-12T03:15:43.280114+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-12T03:15:43.280042+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-12T03:15:43.280044+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-12T03:15:43.280047+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-12T03:15:43.280069+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-12T03:15:43.280075+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280149+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-12T03:15:43.280159+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-12T03:15:43.280116+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-12T03:15:43.280145+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-12T03:15:43.280072+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-12T03:15:43.280082+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-12T03:15:43.280085+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-12T03:15:43.280142+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-12T03:15:43.280176+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-12T03:15:43.280185+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-12T03:15:43.280080+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-12T03:15:43.280109+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-12T03:15:43.280117+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280120+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-12T03:15:43.280153+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-12T03:15:43.280165+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-12T03:15:43.280193+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-12T03:15:43.280079+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280121+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-12T03:15:43.280138+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-12T03:15:43.280181+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-12T03:15:43.280188+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-12T03:15:43.280192+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-12T03:15:43.280137+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-12T03:15:43.280150+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-12T03:15:43.280160+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-12T03:15:43.280175+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-12T03:15:43.280178+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-12T03:15:43.280143+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-12T03:15:43.280179+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-12T03:15:43.280187+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-12T03:15:43.280250+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-12T03:15:43.280155+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-12T03:15:43.280164+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-12T03:15:43.280240+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-12T03:15:43.280268+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-12T03:15:43.280278+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-12T03:15:43.280262+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-12T03:15:43.280263+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-12T03:15:43.280277+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-12T03:15:43.280234+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280255+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-12T03:15:43.280257+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-12T03:15:43.280258+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-12T03:15:43.280292+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-12T03:15:43.280246+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-12T03:15:43.280271+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-12T03:15:43.280210+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block i
n require'
2015-01-12T03:15:43.280233+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-12T03:15:43.280238+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-12T03:15:43.280208+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-12T03:15:43.280241+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-12T03:15:43.280245+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-12T03:15:43.280267+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-12T03:15:43.280273+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-12T03:15:43.280252+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-12T03:15:43.280291+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-12T03:15:43.280294+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-12T03:15:44.208015+00:00 heroku[web.1]: Process exited with status 1
2015-01-12T03:15:44.222932+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-13T18:41:24.928403+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-13T18:41:28.047034+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 9255 -e production`
2015-01-13T18:41:31.519425+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-13T18:41:31.519406+00:00 app[web.1]: => Booting WEBrick
2015-01-13T18:41:31.519463+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-13T18:41:31.519423+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:9255
2015-01-13T18:41:31.519427+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-13T18:41:31.519465+00:00 app[web.1]: ^
2015-01-13T18:41:31.519472+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-13T18:41:31.519429+00:00 app[web.1]: Exiting
2015-01-13T18:41:31.519461+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-13T18:41:31.519479+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-13T18:41:31.519497+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519428+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-13T18:41:31.519467+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-13T18:41:31.519509+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-13T18:41:31.519501+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-13T18:41:31.519480+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-13T18:41:31.519476+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-13T18:41:31.519470+00:00 app[web.1]: ^
2015-01-13T18:41:31.519468+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-13T18:41:31.519464+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-13T18:41:31.519685+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-13T18:41:31.519677+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-13T18:41:31.519680+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-13T18:41:31.519681+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-13T18:41:31.519684+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-13T18:41:31.519473+00:00 app[web.1]: ^
2015-01-13T18:41:31.519699+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-13T18:41:31.519688+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-13T18:41:31.519690+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-13T18:41:31.519692+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-13T18:41:31.519694+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-13T18:41:31.519697+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-13T18:41:31.519475+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-13T18:41:31.519522+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-13T18:41:31.519703+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-13T18:41:31.519705+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-13T18:41:31.519493+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-13T18:41:31.519482+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-13T18:41:31.519543+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-13T18:41:31.519548+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-13T18:41:31.519517+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-13T18:41:31.519484+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-13T18:41:31.519486+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-13T18:41:31.519477+00:00 app[web.1]: ^
2015-01-13T18:41:31.519471+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-13T18:41:31.519496+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-13T18:41:31.519481+00:00 app[web.1]: ... ^
2015-01-13T18:41:31.519485+00:00 app[web.1]: ... ^
2015-01-13T18:41:31.519505+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-13T18:41:31.519568+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519489+00:00 app[web.1]: ... ^
2015-01-13T18:41:31.519494+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-13T18:41:31.519488+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-13T18:41:31.519514+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-13T18:41:31.519498+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-13T18:41:31.519525+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-13T18:41:31.519490+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-13T18:41:31.519563+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519572+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-13T18:41:31.519511+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-13T18:41:31.519503+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-13T18:41:31.519526+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-13T18:41:31.519561+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-13T18:41:31.519502+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-13T18:41:31.519580+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-13T18:41:31.519570+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-13T18:41:31.519550+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-13T18:41:31.519512+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-13T18:41:31.519508+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-13T18:41:31.519513+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519500+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-13T18:41:31.519551+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519566+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-13T18:41:31.519518+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519520+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-13T18:41:31.519560+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-13T18:41:31.519587+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-13T18:41:31.519554+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-13T18:41:31.519549+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-13T18:41:31.519555+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519624+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-13T18:41:31.519546+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-13T18:41:31.519521+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-13T18:41:31.519552+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-13T18:41:31.519558+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-13T18:41:31.519604+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-13T18:41:31.519625+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-13T18:41:31.519567+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-13T18:41:31.519578+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-13T18:41:31.519623+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-13T18:41:31.519613+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-13T18:41:31.519614+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-13T18:41:31.519574+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-13T18:41:31.519575+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-13T18:41:31.519627+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-13T18:41:31.519645+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-13T18:41:31.519635+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-13T18:41:31.519639+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-13T18:41:31.519648+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519631+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-13T18:41:31.519628+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-13T18:41:31.519559+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-13T18:41:31.519652+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-13T18:41:31.519643+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/ac
tive_support/dependencies.rb:247:in `block in require'
2015-01-13T18:41:31.519632+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-13T18:41:31.519634+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-13T18:41:31.519583+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-13T18:41:31.519641+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-13T18:41:31.519657+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-13T18:41:31.519609+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-13T18:41:31.519610+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-13T18:41:31.519638+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-13T18:41:31.519676+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-13T18:41:31.519672+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-13T18:41:31.519584+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-13T18:41:31.519649+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-13T18:41:31.519656+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-13T18:41:31.519608+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-13T18:41:31.519701+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-13T18:41:31.519653+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-13T18:41:32.267239+00:00 heroku[web.1]: Process exited with status 1
2015-01-13T18:41:32.275798+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-14T08:19:56.242502+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=541dd399-6963-4a36-ba0d-c7153a6e83cd fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:19:56.958755+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=507104be-fee7-47d1-be9f-3851134c0313 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:23:56.689600+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=94a78b9b-9926-409c-a08f-9a8e5958e217 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:23:57.156289+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=6e26a5a4-ef91-447a-92bc-5e74268efe4e fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:24:42.133112+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=a124f616-156f-4204-9769-cf0cb870d1d0 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:24:42.563821+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=96705b65-80e8-4f93-999e-dd8e901ee908 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:33:19.057364+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=1873a1fa-fd89-4e86-addc-1f9d13a5193c fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:33:19.532956+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=210f3ac3-a798-4d59-96ff-6885b21c0145 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:37:56.781361+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=9791b576-5d75-45bc-9781-a7cf848853c1 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:37:57.254409+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=7c669d10-7bed-4783-a535-39cbd4d53789 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:38:34.267356+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=d2ffb641-82dd-42a9-b881-4bdfaf730301 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:38:34.784724+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=3a27b166-11ae-4bf2-9ba3-eb43667d6e5e fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:51:51.253755+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=6705aff3-0132-4b3b-af2b-2872182600f5 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:51:51.742439+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=53776328-2339-41f8-b4a4-f6a7c3e6440f fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:52:11.040652+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=ab516808-dc61-4d57-a799-dff579b0d291 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:52:11.520439+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=a11720cf-e476-4b97-b2ce-e9d39b6059ee fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:52:41.390764+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=efb85d5e-eeae-4cc7-a1ef-d7355162b77a fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:52:41.859838+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=7d36a461-c3c8-465b-bf3d-8071e5709557 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:55:04.353949+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=83774fb0-8d88-4591-8e77-115d244b87fc fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:55:04.816974+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=47d47d7f-3321-402a-aa65-029f7c4d89a6 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:56:24.081960+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=455030f7-8644-4abe-be01-998147f94d95 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T08:56:24.442987+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=495997cd-19d1-41a4-a616-3c479d990cdc fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:06:47.001157+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=77e5245f-88ad-4283-a338-90e54e0005bd fwd="173.36.240.175" dyno= connect= service= status=503 bytes=
2015-01-14T09:06:47.158768+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=75a14a0d-7778-417f-b63b-2d8eb38800c8 fwd="173.36.240.175" dyno= connect= service= status=503 bytes=
2015-01-14T09:06:47.909869+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=c317ef9a-a718-49d8-b642-9fea3a8d8396 fwd="173.36.240.175" dyno= connect= service= status=503 bytes=
2015-01-14T09:06:48.068991+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=b6b49f5e-40d6-4a58-80ae-2d63bfa9bdfa fwd="173.36.240.175" dyno= connect= service= status=503 bytes=
2015-01-14T09:21:14.908699+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=2aec3604-6675-483f-89d6-20eb3c7347b7 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:21:15.391749+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=1051f120-ece7-4b9b-8d55-dd9762d35448 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:32:31.822301+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=bd23562f-c470-4ab0-96fc-ce4520912faa fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:32:32.289550+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=c51d59fe-9025-482e-96d0-d6153e87ef61 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:35:01.286462+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=c2bd14c6-c7fb-4c5b-8436-bbdcfc159edf fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T09:35:01.770980+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=29fa917b-45d1-4d2c-aa89-82059b64f021 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T16:06:46.566568+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=497e3e5d-26e9-486b-9dd8-3172c6fa0352 fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:06:47.032126+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=b170c0f2-5c80-47a1-b632-8a1cce8f5eac fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:10:09.218884+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=b02f1320-73a8-4229-aba0-be5f6b3e2dea fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:10:09.688676+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=029e683f-101f-4fdf-96cb-4a6d65b1882e fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:12:40.569797+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=9000ae87-2131-4493-8253-c8451d9da6e8 fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:12:41.039790+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=338de0fa-5cfb-434c-afda-da90bbe2dbd4 fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:17:51.303112+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=2ad06db3-c3da-4276-95e7-594c7d6feb9c fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:17:51.757566+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=d520921a-edc4-4d97-a0c1-274c592eab58 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T16:19:41.159678+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-14T16:19:43.756229+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 40311 -e production`
2015-01-14T16:19:46.811445+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:40311
2015-01-14T16:19:46.811424+00:00 app[web.1]: => Booting WEBrick
2015-01-14T16:19:46.811450+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-14T16:19:46.811447+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-14T16:19:46.811451+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-14T16:19:46.811483+00:00 app[web.1]: ^
2015-01-14T16:19:46.811453+00:00 app[web.1]: Exiting
2015-01-14T16:19:46.811479+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:46.811485+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-14T16:19:46.811481+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:46.811487+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:46.811474+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-14T16:19:46.811489+00:00 app[web.1]: ^
2015-01-14T16:19:46.811494+00:00 app[web.1]: ^
2015-01-14T16:19:46.811496+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:46.811499+00:00 app[web.1]: ^
2015-01-14T16:19:46.811492+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:46.811504+00:00 app[web.1]: ... ^
2015-01-14T16:19:46.811498+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-14T16:19:46.811503+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-14T16:19:46.811506+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:46.811508+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-14T16:19:46.811491+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-14T16:19:46.811501+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:46.811516+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-14T16:19:46.811511+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-14T16:19:46.811522+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:46.811528+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:46.811510+00:00 app[web.1]: ... ^
2015-01-14T16:19:46.811513+00:00 app[web.1]: ...smiss="alert" aria-hid
den="true">×</button>
2015-01-14T16:19:46.811518+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-14T16:19:46.811524+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:46.811515+00:00 app[web.1]: ... ^
2015-01-14T16:19:46.811530+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-14T16:19:46.811533+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-14T16:19:46.811536+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-14T16:19:46.811538+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-14T16:19:46.811526+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811531+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-14T16:19:46.811540+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-14T16:19:46.811542+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-14T16:19:46.811544+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-14T16:19:46.811535+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-14T16:19:46.811548+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811553+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811560+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-14T16:19:46.811558+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-14T16:19:46.811557+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-14T16:19:46.811564+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-14T16:19:46.811586+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-14T16:19:46.811552+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:46.811584+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-14T16:19:46.811550+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:46.811555+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:46.811587+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-14T16:19:46.811589+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-14T16:19:46.811597+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:46.811594+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-14T16:19:46.811599+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:46.811595+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811600+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811603+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-14T16:19:46.811602+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:46.811607+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-14T16:19:46.811605+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-14T16:19:46.811608+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811614+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:46.811610+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:46.811615+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811619+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-14T16:19:46.811617+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:46.811620+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-14T16:19:46.811624+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-14T16:19:46.811622+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-14T16:19:46.811628+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-14T16:19:46.811631+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-14T16:19:46.811629+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-14T16:19:46.811632+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-14T16:19:46.811634+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-14T16:19:46.811647+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-14T16:19:46.811642+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-14T16:19:46.811663+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-14T16:19:46.811667+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-14T16:19:46.811680+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811660+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-14T16:19:46.811686+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:46.811678+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-14T16:19:46.811697+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-14T16:19:46.811709+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-14T16:19:46.811671+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-14T16:19:46.811673+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-14T16:19:46.811705+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-14T16:19:46.811638+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-14T16:19:46.811691+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-14T16:19:46.811703+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-14T16:19:46.811640+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-14T16:19:46.811654+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-14T16:19:46.811662+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-14T16:19:46.811665+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-14T16:19:46.811687+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:46.811643+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-14T16:19:46.811723+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-14T16:19:46.811656+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-14T16:19:46.811682+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:46.811699+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-14T16:19:46.811712+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-14T16:19:46.811735+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-14T16:19:46.811693+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-14T16:19:46.811674+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-14T16:19:46.811716+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-14T16:19:46.811721+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-14T16:19:46.811729+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-14T16:19:46.811739+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-14T16:19:46.811740+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-14T16:19:46.811718+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-14T16:19:46.811727+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-14T16:19:46.811772+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-14T16:19:46.811710+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-14T16:19:46.811733+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-14T16:19:46.811774+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-14T16:19:47.550016+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-14T16:19:47.550706+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-14T16:19:47.536822+00:00 heroku[web.1]: Process exited with status 1
2015-01-14T16:19:53.949700+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 28199 -e production`
2015-01-14T16:19:58.947676+00:00 app[web.1]: => Booting WEBrick
2015-01-14T16:19:58.947693+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-14T16:19:58.947695+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-14T16:19:58.947729+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-14T16:19:58.947733+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:58.947690+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:28199
2015-01-14T16:19:58.947736+00:00 app[web.1]: ^
2015-01-14T16:19:58.947737+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-14T16:19:58.947738+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:58.947744+00:00 app[web.1]: ^
2015-01-14T16:19:58.947743+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:58.947746+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-14T16:19:58.947734+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:19:58.947692+00:00 app[web.1]: => Run `rails server -h` for more startup options
2015-01-14T16:19:58.947747+00:00 app[web.1]: ^
2015-01-14T16:19:58.947748+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:58.947740+00:00 app[web.1]: ^
2015-01-14T16:19:58.947751+00:00 app[web.1]: ... ^
2015-01-14T16:19:58.947752+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:58.947756+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-14T16:19:58.947757+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-14T16:19:58.947696+00:00 app[web.1]: Exiting
2015-01-14T16:19:58.947741+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-14T16:19:58.94
7750+00:00 app[web.1]: ...tton type="button" class="close" data-dismiss="alert" aria-h...
2015-01-14T16:19:58.947764+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:58.947765+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:58.947758+00:00 app[web.1]: ... ^
2015-01-14T16:19:58.947759+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-14T16:19:58.947768+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-14T16:19:58.947772+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `map!'
2015-01-14T16:19:58.947770+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-14T16:19:58.947753+00:00 app[web.1]: ...ass="close" data-dismiss="alert" aria-hidden="true">×<...
2015-01-14T16:19:58.947745+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:19:58.947760+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-14T16:19:58.947771+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:152:in `block in modules_for_helpers'
2015-01-14T16:19:58.947766+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947767+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:58.947781+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947776+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
2015-01-14T16:19:58.947784+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:58.947754+00:00 app[web.1]: ... ^
2015-01-14T16:19:58.947791+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-14T16:19:58.947773+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:147:in `modules_for_helpers'
2015-01-14T16:19:58.947780+00:00 app[web.1]: from /app/app/controllers/application_controller.rb:1:in `<top (required)>'
2015-01-14T16:19:58.947777+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/abstract_controller/helpers.rb:111:in `helper'
2015-01-14T16:19:58.947779+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/railties/helpers.rb:17:in `inherited'
2015-01-14T16:19:58.947787+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947785+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:58.947841+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise_controller.rb:2:in `<top (required)>'
2015-01-14T16:19:58.947837+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `constantize'
2015-01-14T16:19:58.947789+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:58.947808+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-14T16:19:58.947848+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:480:in `load_missing_constant'
2015-01-14T16:19:58.947821+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `block in constantize'
2015-01-14T16:19:58.947810+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:238:in `const_get'
2015-01-14T16:19:58.947834+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'
2015-01-14T16:19:58.947838+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2015-01-14T16:19:58.947872+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:58.947842+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947844+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:58.947845+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:58.947873+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:307:in `depend_on'
2015-01-14T16:19:58.947835+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `inject'
2015-01-14T16:19:58.947897+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `block in <module:Finisher>'
2015-01-14T16:19:58.947900+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `instance_exec'
2015-01-14T16:19:58.947853+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947878+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:468:in `block (2 levels) in eager_load!'
2015-01-14T16:19:58.947847+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:348:in `require_or_load'
2015-01-14T16:19:58.947846+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947851+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:180:in `const_missing'
2015-01-14T16:19:58.947854+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:58.947883+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `block in eager_load!'
2015-01-14T16:19:58.947889+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `eager_load!'
2015-01-14T16:19:58.947858+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947876+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:225:in `require_dependency'
2015-01-14T16:19:58.947931+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:205:in `tsort_each'
2015-01-14T16:19:58.947940+00:00 app[web.1]: from /app/config/environment.rb:5:in `<top (required)>'
2015-01-14T16:19:58.947892+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:346:in `eager_load!'
2015-01-14T16:19:58.947895+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application/finisher.rb:58:in `each'
2015-01-14T16:19:58.947852+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/devise-3.4.0/app/controllers/devise/confirmations_controller.rb:1:in `<top (required)>'
2015-01-14T16:19:58.947880+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:467:in `each'
2015-01-14T16:19:58.947886+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/engine.rb:465:in `each'
2015-01-14T16:19:58.947903+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:30:in `run'
2015-01-14T16:19:58.947909+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:226:in `block in tsort_each'
2015-01-14T16:19:58.947979+00:00 app[web.1]: from /app/config.ru:in `new'
2015-01-14T16:19:58.947920+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:347:in `block in each_strongly_connected_component'
2015-01-14T16:19:58.947981+00:00 app[web.1]: from /app/config.ru:in `<main>'
2015-01-14T16:19:58.947906+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:55:in `block in run_initializers'
2015-01-14T16:19:58.947857+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:58.947989+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:277:in `build_app_and_options_from_config'
2015-01-14T16:19:58.947990+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:199:in `app'
2015-01-14T16:19:58.948005+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:81:in `block in server'
2015-01-14T16:19:58.948008+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `tap'
2015-01-14T16:19:58.948015+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands.rb:17:in `<top (required)>'
2015-01-14T16:19:58.948018+00:00 app[web.1]: from bin/rails:8:in `require'
2015-01-14T16:19:58.948021+00:00 app[web.1]: from bin/rails:8:in `<main>'
2015-01-14T16:19:58.947919+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:427:in `each_strongly_connected_component_from'
2015-01-14T16:19:58.947927+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each_strongly_connected_component'
2015-01-14T16:19:58.947928+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:224:in `tsort_each'
2015-01-14T16:19:58.947993+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:50:in `app'
2015-01-14T16:19:58.947934+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/initializable.rb:54:in `run_initializers'
2015-01-14T16:19:58.947996+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:314:in `wrapped_app'
2015-01-14T16:19:58.947923+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `each'
2015-01-14T16:19:58.947917+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:348:in `block (2 levels) in each_strongly_connected_component'
2015-01-14T16:19:58.947937+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/application.rb:300:in `initialize!'
2015-01-14T16:19:58.947977+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `instance_eval'
2015-01-14T16:19:58.947966+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:232:in `load_dependency'
2015-01-14T16:19:58.947999+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/server.rb:250:in `start'
2015-01-14T16:19:58.947978+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
2015-01-14T16:19:58.948002+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/server.rb:69:in `start'
2015-01-14T16:19:58.947961+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947924+00:00 app[web.1]: from /app/vendor/ruby-2.1.3/lib/ruby/2.1.0/tsort.rb:345:in `call'
2015-01-14T16:19:58.948012+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:40:in `run_command!'
2015-01-14T16:19:58.947972+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:19:58.947986+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:40:in `parse_file'
2015-01-14T16:19:58.947985+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `new_from_string'
2015-01-14T16:19:58.948011+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/railties-4.1.6/lib/rails/commands/commands_tasks.rb:76:in `server'
2015-01-14T16:19:58.947984+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/rack-1.5.2/lib/rack/builder.rb:49:in `eval'
2015-01-14T16:19:58.947963+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `block in require'
2015-01-14T16:19:58.947974+00:00 app[web.1]: from /app/config.ru:3:in `block in <main>'
2015-01-14T16:19:59.809207+00:00 heroku[web.1]: Process exited with status 1
2015-01-14T16:19:59.821098+00:00 heroku[web.1]: State changed from starting to crashed
2015-01-14T16:20:06.056232+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=a73f7a72-66d0-41f5-93a5-f48bc11de841 fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:20:07.054291+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=b79cc1a2-3327-451e-bbde-c217df3cf5d6 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T16:22:49.562683+00:00 heroku[api]: Starting process with command `bundle exec rake db:migrate` by [email protected]
2015-01-14T16:22:53.513782+00:00 heroku[run.4483]: Awaiting client
2015-01-14T16:22:53.566559+00:00 heroku[run.4483]: Starting process with command `bundle exec rake db:migrate`
2015-01-14T16:22:53.608737+00:00 heroku[run.4483]: State changed from starting to up
2015-01-14T16:22:57.921688+00:00 heroku[run.4483]: Process exited with status 0
2015-01-14T16:22:57.935611+00:00 heroku[run.4483]: State changed from up to complete
2015-01-14T16:24:18.532547+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=gengappdemo-2014.herokuapp.com request_id=13e6e3af-f367-4051-8795-163eb804689c fwd="128.107.239.234" dyno= connect= service= status=503 bytes=
2015-01-14T16:24:19.004802+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=gengappdemo-2014.herokuapp.com request_id=e103ba42-1550-4f16-b1c2-40cf5ccc5953 fwd="128.107.239.233" dyno= connect= service= status=503 bytes=
2015-01-14T16:24:38.018362+00:00 heroku[web.1]: State changed from crashed to starting
2015-01-14T16:24:41.265779+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 15578 -e production`
2015-01-14T16:24:44.336642+00:00 app[web.1]: => Booting WEBrick
2015-01-14T16:24:44.336686+00:00 app[web.1]: => Rails 4.1.6 application starting in production on http://0.0.0.0:15578
2015-01-14T16:24:44.336718
+00:00 app[web.1]: <button type="button" class="close" data-dismiss=...
2015-01-14T16:24:44.336704+00:00 app[web.1]: <div class ="alert alert-danger alert-dismissable">
2015-01-14T16:24:44.336732+00:00 app[web.1]: ... ^
2015-01-14T16:24:44.336721+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:24:44.336728+00:00 app[web.1]: ... ^
2015-01-14T16:24:44.336707+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
2015-01-14T16:24:44.336729+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected keyword_true, expecting keyword_end
2015-01-14T16:24:44.336712+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:9: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2015-01-14T16:24:44.336725+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected tIDENTIFIER, expecting keyword_end
2015-01-14T16:24:44.336734+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: unterminated string meets end of file
2015-01-14T16:24:44.336731+00:00 app[web.1]: ...smiss="alert" aria-hidden="true">×</button>
2015-01-14T16:24:44.336690+00:00 app[web.1]: => Notice: server is listening on all interfaces (0.0.0.0). Consider using 127.0.0.1 (--binding option)
2015-01-14T16:24:44.336692+00:00 app[web.1]: => Ctrl-C to shutdown server
2015-01-14T16:24:44.336735+00:00 app[web.1]: /app/app/helpers/devise_helper.rb:10: syntax error, unexpected end-of-input, expecting keyword_end
2015-01-14T16:24:44.336715+00:00 app[web.1]: ^
2015-01-14T16:24:44.336742+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require'
2015-01-14T16:24:44.336701+00:00 app[web.1]: /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/dependencies.rb:247:in `require': /app/app/helpers/devise_helper.rb:6: syntax error, unexpected tSTRING_BEG, expecting keyword_end (SyntaxError)
2015-01-14T16:24:44.336821+00:00 app[web.1]: from /app/vendor/bundle/ruby/2.1.0/gems/activesupport-4.1.6/lib/active_support/inflector/methods.rb:236:in `each'