Git Product home page Git Product logo

Comments (11)

solnic avatar solnic commented on June 12, 2024 1

Re-opening this as it's one of the caveats I want to address before 1.0.0. ie dry-system could benefit from this and possibly many more gems.

from dry-configurable.

dorner avatar dorner commented on June 12, 2024 1

One use case I have for this is a setting whose default value should be set to the value of a different setting:

  class A extend Dry::Configurable
    setting :foo, 5
    setting :bar, self.config.foo
  end

This causes a crash right now.

from dry-configurable.

flash-gordon avatar flash-gordon commented on June 12, 2024

Have you checked https://dry-rb.org/gems/dry-configurable/testing/ ?

from dry-configurable.

waiting-for-dev avatar waiting-for-dev commented on June 12, 2024

I hadn't, and the funny thing is that it was a PR of mine which introduced it :D

However, it doesn't change anything for this scenario:

class A
  extend Dry::Configurable

  setting :a
end

A.config
require 'dry/configurable/test_interface'
A.enable_test_interface
A.reset_config

class A
  setting :b
end

# => Dry::Configurable::AlreadyDefinedConfig (Cannot add setting +b+, A is already configured)

from dry-configurable.

flash-gordon avatar flash-gordon commented on June 12, 2024

Hm, we could fix it by resetting the @config_defined variable. Allowing adding settings dynamically though possible (as far as I can see) is 1) a breaking change 2) somewhat more involved, I wouldn't do it without a solid reason, it never was an issue beyond tests (again, AFAIK).

from dry-configurable.

waiting-for-dev avatar waiting-for-dev commented on June 12, 2024

somewhat more involved, I wouldn't do it without a solid reason

Yeah, I also felt uneasy with that. Finally, I have found a better way which doesn't need to reopen classes. So, at least for now, I'm going to close it.

Thank your for your help.

from dry-configurable.

waiting-for-dev avatar waiting-for-dev commented on June 12, 2024

@solnic a caveat you could encounter with this is that settings won't be added to subclasses when they haven been loaded before the new setting is added:

class A
  extend Dry::Configurable
end

class B < A
end

A.setting :a

A.settings # => #<Set: {:a}>
B.settings # => #<Set: {}>

class C < A
end

C.settings  # => #<Set: {:a}>

from dry-configurable.

solnic avatar solnic commented on June 12, 2024

I fixed it for real in #77

from dry-configurable.

solnic avatar solnic commented on June 12, 2024

oops, that's a different use case, re-opening 🙄

from dry-configurable.

solnic avatar solnic commented on June 12, 2024

This was fixed in 0.11.0

from dry-configurable.

solnic avatar solnic commented on June 12, 2024

@dorner your usecase works now too with 0.11.0

from dry-configurable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.