Sha256: 67af43ea36613863889850d7d2ea0764b95b3dec6605a8500bf2811c6a35f6ed
Contents?: true
Size: 497 Bytes
Versions: 59
Compression:
Stored size: 497 Bytes
Contents
#!/usr/bin/env ruby file = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__ file = File.expand_path(File.dirname(file)) $LOAD_PATH.unshift File.expand_path('../lib', file) require 'thor' require 'docker-sync/update_check' thor = File.expand_path('../tasks/daemon', file) Dir.glob(File.join(thor, '/**/*.thor')).each { |taskfile| load taskfile } thor = File.expand_path('../tasks/sync', file) Dir.glob(File.join(thor, '/**/*.thor')).each { |taskfile| load taskfile } Daemon.start
Version data entries
59 entries across 59 versions & 1 rubygems