| Notes: |
| |
Notes:
Changes:
Using an Array instance as a value to a task will result in an ArgumentError. This is to prevent situations where a user passes an array of files/paths and the :to_s method joins the contents together without an appropriate separator. For example;
["file1.txt", "file2.txt"].to_s
--> "file1.txtfile2.txt"
Instead, users are encouraged to do something like;
["file1.txt", "file2.txt"].join(File::PATH_SEPARATOR).to_s
--> "file1.txt:file2.txt"
|
|