Git Product home page Git Product logo

Comments (6)

solnic avatar solnic commented on June 12, 2024 4

I think we're gonna add this feature. We had a couple legit cases in dry-(system|web) land where having configurable objects would be useful.

from dry-configurable.

 avatar commented on June 12, 2024 1

@AMHOL

But we can add an instance behaviour (PoC, fastest rough example):

module Dry
   module Configurable
      def self.included(base)
        # NOTE: ugly, but only for a PoC-example
        base.class_eval do
          def initialize
            @_config_mutex = ::Mutex.new
            @_settings = ::Concurrent::Array.new
            @_reader_attributes = ::Concurrent::Array.new
          end
        end
      end
    end
  end
end

and then:

class Config
  include Dry::Configurable
end

config = Config.new

config.setting :a, reader: true do
  setting :b, 'kek'
end

puts config.a.b # => "kek"

config.configure do |c|
  c.a.b = 'pek'
end

puts config.a.b # => "pek"

Sure, need to refactor a lot, but it really possible ;) WDYT?

from dry-configurable.

AMHOL avatar AMHOL commented on June 12, 2024

@ilnurnasyrov this library should only be used as a class-level DSL, AFAIK there is no documentation that says it should work when included, it could be updated to raise an exception when included, although I'm not sure it's worth doing that.

from dry-configurable.

 avatar commented on June 12, 2024

@ilnurnasyrov you can simply define a proxy object with a dynamic module instantiation - and u will get a simple instance implementation without monkey patching :)

from dry-configurable.

AMHOL avatar AMHOL commented on June 12, 2024

@ergosploit do you have a use-case for instance-level configuration? It isn't supported intentionally because every time I've come across a use for it I've later realised that there was a better solution to the issues I had.

from dry-configurable.

ilnurnasyrov2 avatar ilnurnasyrov2 commented on June 12, 2024

Oh! thank you, i just needed to configure instances because i wanted to use two connections to third party api. I ended up using dry-initializer.

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.