mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-09-25 07:24:55 -04:00
rails-assets.org is down, and bundler can't install anything while a gem's source is unreachable, so CI fails for every branch before a single spec runs. The one gem from there was rails-assets-leaflet.markercluster; it now comes from npm, where the React bundle's packages already come from, and node_modules is already on the asset path. CI and Heroku both install npm packages. That gem also brought in rails-assets-leaflet, a second copy of Leaflet (1.5.1), which shadowed the leaflet-rails gem the Gemfile asks for. With it gone, the maps get Leaflet 1.9.4 from leaflet-rails, as intended, so the cluster plugin is its current release, 1.5.3, which supports it. npm's peer dependency warning for leaflet is expected: Leaflet comes from the gem, loaded before the plugin. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>