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
I previously opened #1278 for this issue and I'm not sure why it was closed. This buildpack overwrites our config/database.yml unless we have activerecord in our Gemfile, but we don't actually use activerecord (we use the sequel gem instead, which also uses config/database.yml). Is there a way this buildpack can allow us to remove activerecord from our Gemfile without overwriting our config/database.yml file?
Requiring a gem we don't need is annoying, slows down our bundle install times, and increases our surface area for security vulnerabilities.
The text was updated successfully, but these errors were encountered:
Ahh. I didn't understand the request fully. I see and understand it. I'm not sure how to gate or guard this logic though. A simple solution would be to add an escape valve-like env var check like HEROKU_SKIP_DATABASE_YML_WRITE=1
I previously opened #1278 for this issue and I'm not sure why it was closed. This buildpack overwrites our
config/database.yml
unless we haveactiverecord
in ourGemfile
, but we don't actually useactiverecord
(we use thesequel
gem instead, which also usesconfig/database.yml
). Is there a way this buildpack can allow us to removeactiverecord
from ourGemfile
without overwriting ourconfig/database.yml
file?Requiring a gem we don't need is annoying, slows down our
bundle install
times, and increases our surface area for security vulnerabilities.The text was updated successfully, but these errors were encountered: