Skip to content

Instantly share code, notes, and snippets.

@brenes
Forked from Dagnan/application.html.erb
Created November 20, 2017 08:33
Show Gist options
  • Save brenes/a7db117ea4b09f466f4082a3cf6a8746 to your computer and use it in GitHub Desktop.
Save brenes/a7db117ea4b09f466f4082a3cf6a8746 to your computer and use it in GitHub Desktop.
Inline CSS or JS in Rails 5
<!DOCTYPE html>
<html>
<head>
<%= inline_js 'application.js' %>
<%= inline_css 'application.css' %>
</head>
<body>
</body>
</html>
module AssetsHelper
def inline_file(path)
if assets = Rails.application.assets
asset = assets.find_asset(path)
return '' unless asset
asset.source
else
File.read(File.join(Rails.root, 'public', asset_path(path)))
end
end
def inline_js(path)
"<script>#{inline_file path}</script>".html_safe
end
def inline_css(path)
"<style>#{inline_file path}</style>".html_safe
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment