Piotr Kuczynski
Piotr Kuczynski
@rdubya would you like to have a look at this one?
I think we could add alias `Rails.application.secrets` to `Settings.secrets` if anybody is interested in this. However, I would keep the way `secrets.yml` work meaning with environments groups. @smith @Darkside73 are...
Settings constant is a singleton shared across all request to your Rails app. That means it would load your client config once when the server starts (single Rails server instance...
@ilyakorol you can [add sources in runtime](https://github.com/railsconfig/config#adding-sources-at-runtime). It should not be hard to do the same on the initializer level as @DannyBen suggested: ``` Config.setup do |config| config.const_name = "Settings"...
@masterkain would you like to provide a PR for this?
I don't think its related to #194. They actually wanted something opposite to your case. Env vars are string and I don't think we should force conversion to symbols. However...
@khoan are you interested in firing up PR for this?
@tjgfernandes, could you please add some documentation explaining this new feature? I honestly see no use case, so I am interested to see how you present it...
So the idea you have is to be able to load another settings file before loading current set of files based on the current environment? Sorry for asking, but why...
I see your point, but I am not sure about the implementation. Let me think about it for a while and abstract it in a more general way, where you...