Sha256: f0b509b17509b819ad448a520947f901eeab731b2ff9bb7e7fce2b3007a14764

Contents?: true

Size: 581 Bytes

Versions: 1

Compression:

Stored size: 581 Bytes

Contents

module FunWith
  module Files
    module StatMethods
      def stat
        File.stat( self )
      end
      
      def inode
        self.stat.ino
      end
      
      # def older_than?( time, &block )
      # end
      #
      # def newer_than?( time, &block )
      # end
      #
      # def bigger_than?( sz, units = :B, &block )
      # end
      #
      # def smaller_than?( sz, units = :B, &block )
      # end
      #
      # def modified_before?( time, &block )
      # end
      #
      # def modified_since?( time, &block )
      # end
      
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fun_with_files-0.0.18 ./lib/fun_with/files/stat_methods.rb