class Filechecker
Public Class Methods
new(file)
click to toggle source
# File lib/simple-chmod/filechecker.rb, line 5 def initialize(file) @file = file end
Public Instance Methods
result()
click to toggle source
# File lib/simple-chmod/filechecker.rb, line 9 def result File.exist?(@file) end