Skip to content

Commit

Permalink
Revert "add a fix for "undefined method `assets'" based on comments in
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgemanrubia authored Nov 11, 2024
1 parent ccb2346 commit f261786
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions lib/audits1984/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,7 @@ class Engine < ::Rails::Engine
end

initializer "audits1984.assets.precompile" do |app|
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
app.config.assets.precompile << "audits1984_manifest.js"
end
end
end

0 comments on commit f261786

Please sign in to comment.