Updated: Rails: Using custom configurations with the config_for method

Posted . Visible to the public. Auto-destruct in 43 days

Changes

    ...
  • * This approach might be preferred over global constants like `config/constants/settings.rb`:
  • * It can be used in the Rails Configuration itself and all initializers.
  • * It allows to write environment dependent settings.
  • -* Undefined keys return `nil` if not present e.g. `Rails.application.config.foobar => nil`
  • +
  • +* Undefined keys return `nil` if not present e.g. `Rails.application.config.foobar => nil`.
  • +* If you need to ensure the value of key is not blank, use the bang method e.g. `Rails.application.config.foobar!`. This is recommended for a value that must exist in any case (no blank value).
  • +* For many other cases it more useful to use `#fetch` instead of the attribute accessors to ensure you have no typos in your config e.g. `Rails.application.config.fetch(:foobar)`. You might also want to chain the method calls for nested configs e.g. `Rails.application.config.fetch(:foobar).fetch(:bar)`. This approach allows you to have `''`, `true`, `false` and `nil` in your config.
  • +
License
Source code in this card is licensed under the MIT License.
Posted by Emanuel to makandra dev (2025-02-26 09:36)