Skip to content
This repository was archived by the owner on May 29, 2020. It is now read-only.

Commit f0c9566

Browse files
committed
update assets
1 parent b96bde9 commit f0c9566

File tree

27 files changed

+18
-12781
lines changed

27 files changed

+18
-12781
lines changed

app/assets/javascripts/application.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
//
1313
//= require jquery
1414
//= require jquery_ujs
15+
//= require twitter/bootstrap/bootstrap-tooltip
1516
//= require twitter/bootstrap
1617
//= require turbolinks
1718
//= require_tree .

app/views/layouts/application.html.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
%link(href="images/apple-touch-icon-114x114.png" rel="apple-touch-icon-precomposed" sizes="114x114")
1515
%link(href="images/apple-touch-icon-72x72.png" rel="apple-touch-icon-precomposed" sizes="72x72")
1616
%link(href="images/apple-touch-icon.png" rel="apple-touch-icon-precomposed")
17-
%link(href="favicon.ico" rel="shortcut icon")
17+
%link(href="/favicon.ico" rel="shortcut icon")
1818

1919

2020
%body

config/environments/production.rb

+8-6
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,12 @@
8888
:enable_starttls_auto => true
8989
}
9090

91-
config.middleware.use ExceptionNotifier,
92-
:email => {
93-
:email_prefix => "[example] ",
94-
:sender_address => %{"notifier" <[email protected]>},
95-
:exception_recipients => ENV['EXCEPTION_MAIL_TO'].split(',')
96-
}
91+
if ENV['EXCEPTION_MAIL_TO']
92+
config.middleware.use ExceptionNotifier,
93+
:email => {
94+
:email_prefix => "[example] ",
95+
:sender_address => %{"notifier" <[email protected]>},
96+
:exception_recipients => ENV['EXCEPTION_MAIL_TO'].split(',')
97+
}
98+
end
9799
end

0 commit comments

Comments
 (0)