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 tested this incorrectly before releasing the new version. It doesn't work :(
I was poking around yesterday trying to get it to work. It looks like it's going to work, but then it doesn't actually change the config at all.
When accessing Rails.application.configure from inside the file loaded from the initializer block, it does change if you're looking at it right then, but after when the server actually loads, it isn't changed.
The initializer takes a block like initializer "load my.development.rb if present" do |app|, where app is Rails.application, so I tried using that variable to call configure, but it still didn't work.
Not sure how to fix it.
The text was updated successfully, but these errors were encountered:
#40
I tested this incorrectly before releasing the new version. It doesn't work :(
I was poking around yesterday trying to get it to work. It looks like it's going to work, but then it doesn't actually change the config at all.
When accessing
Rails.application.configure
from inside the file loaded from theinitializer
block, it does change if you're looking at it right then, but after when the server actually loads, it isn't changed.The
initializer
takes a block likeinitializer "load my.development.rb if present" do |app|
, whereapp
isRails.application
, so I tried using that variable to callconfigure
, but it still didn't work.Not sure how to fix it.
The text was updated successfully, but these errors were encountered: