Sha256: bbe1fb2e7c4085f5c77b345b3bd8763286575c8f0961890d651812aa5a02724d
Contents?: true
Size: 765 Bytes
Versions: 32
Compression:
Stored size: 765 Bytes
Contents
require 'thor/shell' require 'docker-sync/execution' module DockerSync module WatchStrategy class Dummy include Thor::Shell include Execution @options @sync_name @watch_fork @watch_thread def initialize(sync_name, options) @options = options @sync_name = sync_name @watch_fork = nil @watch_thread = nil end def run say_status 'success', 'Watcher disabled by configuration' if @options['verbose'] end def stop end def clean end def watch end def watch_options end def watch_fork return @watch_fork end def watch_thread return @watch_thread end end end end
Version data entries
32 entries across 32 versions & 1 rubygems