Sha256: a681360f9fe4ac48a18f1e59c5cdcc2e129f7d348bff70ba5d99b7f04b62854f

Contents?: true

Size: 347 Bytes

Versions: 4

Compression:

Stored size: 347 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require 'update_repo'

# Catch ctrl-c and abort gracefully without Ruby back trace...
Signal.trap('INT') do
  print "\r  -> ".red, "Aborting on user request.\n\n"
  exit
end

# create a new instance of the class...
walk_repo = UpdateRepo::WalkRepo.new
# then start the process...
walk_repo.start

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
update_repo-0.11.3 exe/update_repo
update_repo-0.11.2 exe/update_repo
update_repo-0.11.1 exe/update_repo
update_repo-0.10.1 exe/update_repo