Sha256: 72f6843d1cd5602e1d654ce269b4ee849e1278d318912aea20427a3e2a54cc7b

Contents?: true

Size: 490 Bytes

Versions: 2

Compression:

Stored size: 490 Bytes

Contents

#!/usr/bin/env ruby
# This script will run the EDL ML Renamer from wherever it is executed

require 'rubygems'

PATH = File.expand_path(File.dirname(__FILE__)).
  gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR)

require 'digitalfilmtree/vfx/edl_ml_renamer'
r = Digitalfilmtree::VFX::EDLMLRenamer.new
r.folder = PATH

if r.ready?
  STDOUT.puts "Do you want me to rename?"
else
  STDOUT.puts "Not ready. Are you missing .txt, .edl, and/or .mov files?"
end
STDIN.gets

r.execute

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
digitalfilmtree-0.0.5 examples/edl_ml_renamer.rb
digitalfilmtree-0.0.4 examples/edl_ml_renamer.rb