Sha256: 79394d0803a2f43c9aa2704ccef59cfb281be5bea56ef5717c5e8f3daa7e0798

Contents?: true

Size: 755 Bytes

Versions: 132

Compression:

Stored size: 755 Bytes

Contents

#!/usr/bin/env ruby

module FileCreation
  OLDFILE = "testdata/old"
  NEWFILE = "testdata/new"

  def create_timed_files(oldfile, *newfiles)
    return if File.exist?(oldfile) && newfiles.all? { |newfile| File.exist?(newfile) }
    old_time = create_file(oldfile)
    newfiles.each do |newfile|
      while create_file(newfile) <= old_time
        sleep(0.1)
        File.delete(newfile) rescue nil
      end
    end
  end

  def create_dir(dirname)
    FileUtils.mkdir_p(dirname) unless File.exist?(dirname)
    File.stat(dirname).mtime
  end

  def create_file(name)
    create_dir(File.dirname(name))
    FileUtils.touch(name) unless File.exist?(name)
    File.stat(name).mtime
  end

  def delete_file(name)
    File.delete(name) rescue nil
  end
end

Version data entries

132 entries across 104 versions & 12 rubygems

Version Path
craigmarksmith-rake-0.8.3.100 test/filecreation.rb
craigmarksmith-rake-0.8.4.101 test/filecreation.rb
craigmarksmith-rake-0.8.4.102 test/filecreation.rb
craigmarksmith-rake-0.8.4.103 test/filecreation.rb
elliottcable-echoe-3.1.1 vendor/rake/test/filecreation.rb
elliottcable-echoe-3.1.2 vendor/rake/test/filecreation.rb
jandot-biorake-1.0 test/file_creation.rb
jimweirich-rake-0.8.1.10 test/filecreation.rb
jimweirich-rake-0.8.1.11 test/filecreation.rb
jimweirich-rake-0.8.1.5 test/filecreation.rb
jimweirich-rake-0.8.1.6 test/filecreation.rb
jimweirich-rake-0.8.1.7 test/filecreation.rb
jimweirich-rake-0.8.1.8 test/filecreation.rb
jimweirich-rake-0.8.1.9 test/filecreation.rb
jimweirich-rake-0.8.2.99 test/filecreation.rb
jimweirich-rake-0.8.2 test/filecreation.rb
jimweirich-rake-0.8.3.1 test/filecreation.rb
jimweirich-rake-0.8.3.100 test/filecreation.rb
jimweirich-rake-0.8.3.99 test/filecreation.rb
jimweirich-rake-0.8.3 test/filecreation.rb