Ruby 2.4

FileUtils::StreamUtils_

module FileUtils::StreamUtils_

Private Instance Methods

fu_blksize(st) Show source

# File lib/fileutils.rb, line 1085 def fu_blksize(st) s = st.blksize return nil unless s return nil if s == 0 s end

fu_default_blksize() Show source

# File lib/fileutils.rb, line 1092 def fu_default_blksize 1024 end

fu_stream_blksize(*streams) Show source

# File lib/fileutils.rb, line 1076 def fu_stream_blksize(*streams) streams.each do |s| next unless s.respond_to?(:stat) size = fu_blksize(s.stat) return size if size end fu_default_blksize() end

fu_windows?() Show source

# File lib/fileutils.rb, line 1068 def fu_windows? /mswin|mingw|bccwin|emx/ =~ RUBY_PLATFORM end