You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's weird. It's probably referring to the development dependency in your admin/admin.gemspec: s.add_development_dependency "sqlite3". It's something Rails adds and uses for the dummy app that gets created along with your engine, to be used for tests.
The error says that the gem couldn't be found, which is weird. I assume you still have source 'https://rubygems.org' in your Gemfile? Perhaps the site was down for a bit or something.
You can always remove the development dependency as well, if you're not gonna use the dummy app.
I fall in the category of people discussed #227 who are still getting their bearings around non-Rails uses of Bundler. I ended up having to install the gem manually to bypass the warning. Thanks.
I am setting up Godmin using the engine route but am getting the below error running
admin/bin/rails bundle install
My project uses postgres and I'd like to avoid bundling sqlite3 if possible.
The text was updated successfully, but these errors were encountered: