Skip to content

Instantly share code, notes, and snippets.

@Dagnan
Forked from averyvery/application.rb
Last active November 21, 2020 19:10
Show Gist options
  • Select an option

  • Save Dagnan/175168c456629a4ad1acdba8e0cdedb9 to your computer and use it in GitHub Desktop.

Select an option

Save Dagnan/175168c456629a4ad1acdba8e0cdedb9 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
@vishwakarma
Copy link
Copy Markdown

You may use below if you have asset hosts configured as cdn
path = "Your asset name", like - home.css
File.read(File.join(Rails.root, 'public', 'assets', Rails.application.assets_manifest.assets[path]))

@julianguyen
Copy link
Copy Markdown

Thanks for this! Does it work for scss?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment