Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accept FileList object as directory task's target #530

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/rake/dsl_definition.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def file_create(*args, &block)
# directory "testdata/doc"
#
def directory(*args, &block) # :doc:
args = args.flat_map { |arg| arg.is_a?(FileList) ? arg.to_a.flatten : arg }
result = file_create(*args, &block)
dir, _ = *Rake.application.resolve_args(args)
dir = Rake.from_pathname(dir)
Expand Down
12 changes: 12 additions & 0 deletions test/test_rake_directory_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,16 @@ def test_can_use_pathname

assert File.directory?("a/b/c")
end

def test_can_use_filelist
directory FileList["a", "b", "c"]

assert_equal FileCreationTask, Task["a"].class

verbose(false) {
Task["a"].invoke
}

assert File.directory?("a")
end
end