Sha256: 2234a50095be5b1c0e18c5a94429d68ec663b552ac1ec812da13b339d948bbd6
Contents?: true
Size: 937 Bytes
Versions: 20
Compression:
Stored size: 937 Bytes
Contents
module React module ServerRendering # Get asset content by reading the compiled file from disk using the generated manifest.yml file # # This is good for Rails production when assets are compiled to public/assets # but sometimes, they're compiled to other directories (or other servers) class YamlManifestContainer def initialize @assets = YAML.load_file(public_asset_path('manifest.yml')) end def find_asset(logical_path) asset_path = @assets[logical_path] || raise("No compiled asset for #{logical_path}, was it precompiled?") File.read(public_asset_path(asset_path)) end def self.compatible? ::Rails::VERSION::MAJOR == 3 end private def public_asset_path(asset_name) asset_path = File.join('public', ::Rails.application.config.assets.prefix, asset_name) ::Rails.root.join(asset_path) end end end end
Version data entries
20 entries across 20 versions & 1 rubygems