Asset fixes (#238)

* Fixed fonts

* Fixed assets

* Fixed logo in emails

* Switched to immediate email delivery

* Fixed prod emails and added deployment tasks

* Fixed deployments
This commit is contained in:
Godwin
2017-07-23 09:35:23 -07:00
committed by GitHub
parent a359aa23fb
commit 5ddea7550d
170 changed files with 89 additions and 3872 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ module PageHelper
def add_inline_script(script)
@_inline_scripts ||= Set.new
script = Rails.application.assets.find_asset("#{script.to_s}.js").to_s
script = File.read(File.join(Rails.public_path, ActionController::Base.helpers.asset_path("#{script.to_s}.js")))
@_inline_scripts << script
end