braintree / runbook

A framework for gradual system automation
MIT License
730 stars 43 forks source link

Use File.exist? instead of File.exists? #35

Closed onk closed 4 years ago

onk commented 4 years ago

Fix deprecation warning. File.exists? is deprecated since ruby 2.1.

$ ruby -w -e "File.exists?('foo')"
-e:1: warning: File.exists? is deprecated; use File.exist? instead