lib/xdg/config.rb in xdg-3.0.2 vs lib/xdg/config.rb in xdg-3.1.0
- old
+ new
@@ -7,10 +7,10 @@
extend Forwardable
HOME_PAIR = Pair["XDG_CONFIG_HOME", ".config"].freeze
DIRS_PAIR = Pair["XDG_CONFIG_DIRS", "/etc/xdg"].freeze
- delegate %i[home directories all] => :combined
+ delegate %i[home directories all inspect] => :combined
def initialize home: Paths::Standard, directories: Paths::Directory, environment: ENV
@combined = Paths::Combined.new home.new(HOME_PAIR, environment),
directories.new(DIRS_PAIR, environment)
end