class Dotman::AfterClone

Public Class Methods

run(after_clone_path) click to toggle source
# File lib/dotman/after_clone.rb, line 3
def self.run(after_clone_path)
  full_path = File.join(after_clone_path, '.dotman.after_clone')
  if File.exist?(full_path)
    system full_path
  end
end