We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if I have a module with like this
module MyModule include Configureasy load_config :config end
then I write another module like this
module AnotherModule include Configureasy load_config :another_config end
Inside the AnotherModule.config I have the same value as MyModule.config, even when I try to override it with:
AnotherModule.config
MyModule.config
module AnotherModule include Configureasy load_config :another_config, as: :config end
The text was updated successfully, but these errors were encountered:
alexandreprates
No branches or pull requests
if I have a module with like this
then I write another module like this
Inside the
AnotherModule.config
I have the same value asMyModule.config
, even when I try to override it with:The text was updated successfully, but these errors were encountered: