internetee-registry/config/initializers/file_exists_alias.rb
2025-04-22 11:18:18 +03:00

5 lines
No EOL
251 B
Ruby

if !File.respond_to?(:exist?) && File.respond_to?(:exists?)
File.singleton_class.send(:alias_method, :exist?, :exists?)
elsif !File.respond_to?(:exists?) && File.respond_to?(:exist?)
File.singleton_class.send(:alias_method, :exists?, :exist?)
end