lib/tapioca/commands/command.rb in tapioca-0.10.1 vs lib/tapioca/commands/command.rb in tapioca-0.10.2
- old
+ new
@@ -38,20 +38,20 @@
params(
path: T.any(String, Pathname),
content: String,
force: T::Boolean,
skip: T::Boolean,
- verbose: T::Boolean
+ verbose: T::Boolean,
).void
end
def create_file(path, content, force: true, skip: false, verbose: true)
file_writer.create_file(path, force: force, skip: skip, verbose: verbose) { content }
end
sig do
params(
path: T.any(String, Pathname),
- verbose: T::Boolean
+ verbose: T::Boolean,
).void
end
def remove_file(path, verbose: true)
file_writer.remove_file(path, verbose: verbose)
end