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
In an effort to keep our application.rb file as close to a default rails app as possible, we chose to configure console1984 in an initializer using a Rails.application.reloader.to_prepare block.
Rails.application.reloader.to_preparse do
Rails.application.configure do
config.console1984.incinerate = false
end
end
What we found out though is that the falsey values are not persisted. The current behavior of set_from is such that not present values are not assigned. I've opened a PR that aligns the behavior of console1984 with the behavior in audits1984.
The text was updated successfully, but these errors were encountered:
In an effort to keep our
application.rb
file as close to a default rails app as possible, we chose to configure console1984 in an initializer using aRails.application.reloader.to_prepare
block.What we found out though is that the
falsey
values are not persisted. The current behavior ofset_from
is such that not present values are not assigned. I've opened a PR that aligns the behavior of console1984 with the behavior in audits1984.The text was updated successfully, but these errors were encountered: