lib/xdg/config.rb in xdg-3.1.1 vs lib/xdg/config.rb in xdg-4.0.0

- old
+ new

@@ -9,10 +9,10 @@ HOME_PAIR = Pair["XDG_CONFIG_HOME", ".config"].freeze DIRS_PAIR = Pair["XDG_CONFIG_DIRS", "/etc/xdg"].freeze delegate %i[home directories all inspect] => :combined - def initialize home: Paths::Standard, directories: Paths::Directory, environment: ENV + def initialize home: Paths::Home, directories: Paths::Directory, environment: ENV @combined = Paths::Combined.new home.new(HOME_PAIR, environment), directories.new(DIRS_PAIR, environment) end private