Skip to content

Commit

Permalink
Merge pull request #59 from enginuitygroup/v0.1.7-asset-patch
Browse files Browse the repository at this point in the history
add a fix for "undefined method `assets'" based on comments in #50
  • Loading branch information
jorgemanrubia authored Nov 11, 2024
2 parents bd5f8ea + 58b5b7d commit ccb2346
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion lib/audits1984/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,31 @@ class Engine < ::Rails::Engine
end

initializer "audits1984.assets.precompile" do |app|
app.config.assets.precompile << "audits1984_manifest.js"
if app.config.respond_to?(:assets)
app.config.assets.precompile << "audits1984_manifest.js"
else
gem_asset_root = Audits1984::Engine.root.join("app/assets")
tmp_asset_root = Rails.root.join("tmp/audits1984/assets")

# Create audits1984 css and js files
asset_files = [
"javascripts/audits1984/application.js",
"stylesheets/audits1984/bulma.min.css",
"stylesheets/audits1984/application.css",
]

asset_files.each do |file|
unless (local_file = tmp_asset_root.join(file)).exist?
local_file.dirname.mkpath
local_file.write gem_asset_root.join(File.dirname(file)).children.map(&:read).join("\n\n")
end
end

# Serve custom assets instead of audits1984's (that will 404 without the asset pipeline)
Rails.application.config.middleware.use Rack::Static,
urls: %w[/javascripts/audits1984 /stylesheets/audits1984 /images/audits1984],
root: tmp_asset_root
end
end
end
end

0 comments on commit ccb2346

Please sign in to comment.