rvm/gem-wrappers

View on GitHub
lib/gem-wrappers/command/file_exist.rb

Summary

Maintainability
A
0 mins
Test Coverage
class WrappersCommand
  class FileExist
    def self.===(file)
      File.exist?(file)
    end
  end
end