1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Replace File.exists? with File.exist?

This commit is contained in:
Katsuhiko YOSHIDA 2022-12-06 18:40:06 +09:00 committed by Anil Kumar Maurya
parent a0cb475a54
commit 7d49b11a86

View file

@ -29,7 +29,7 @@ RUBY
end end
def model_exists? def model_exists?
File.exists?(File.join(destination_root, model_path)) File.exist?(File.join(destination_root, model_path))
end end
def model_path def model_path