From 93f6953f954566d974898b447883bb0f814002a8 Mon Sep 17 00:00:00 2001 From: Alessandro Desantis Date: Fri, 13 Dec 2019 16:52:27 +0100 Subject: [PATCH] Fix Sprockets complaining about the lack of a manifest There is an issue with Sprockets 4 not accepting a custom path for the assets manifest, which doesn't play well with in-memory dummy apps such as the one we use in this gem. A fix was provided for sprockets-rails[1] but it was not accepted yet. [1]: https://github.com/rails/sprockets-rails/pull/446 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index e678bde..0873cc1 100644 --- a/Gemfile +++ b/Gemfile @@ -9,5 +9,6 @@ gem 'solidus_core', github: 'solidusio/solidus', branch: branch gemspec gem 'solidus_extension_dev_tools', github: 'solidusio-contrib/solidus_extension_dev_tools' +gem 'sprockets', '~> 3' gem 'sprockets-rails' gem 'sqlite3'