lib/stashify/directory.rb in stashify-2.0.0 vs lib/stashify/directory.rb in stashify-2.1.0

- old
+ new

@@ -41,10 +41,10 @@ self.class == other.class && name == other.name && path == other.path end private - def path_of(name) - ::File.join(path, name) + def path_of(*name) + ::File.join(path, *name) end end end