configurations
configurations copied to clipboard
Configurations provides a unified approach to do configurations for gems or other ruby code
Results
2
configurations issues
Sort by
recently updated
recently updated
newest added
# Bug description If you want to define `configuration_method` and you don't have another key in the scope, eg. `:my` the method won't be defined. ```rb MyApp.configure do |c| end...
I think it would be great to have instance specific configuration that takes precedence over the class-level configuration. Example: ``` MyGem.new do |config| config.foo = 'bar' end ``` Does this...