Movie::ConfigBuilder
ConfigBuilder provides a fluent API for building Config instances.
Example: config = Movie::Config.builder .set("name", "my-system") .set("remoting.host", "127.0.0.1") .set("remoting.port", 9000) .set("remoting.enabled", true) .build
Constructors
new
SourceInstance methods
Sets a value at the given path. Paths can be nested using dots: "remoting.port"
Sets a duration value (stored as string for serialization).