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:
parent
a0cb475a54
commit
7d49b11a86
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue