class DockerSync::WatchStrategy::Dummy
Public Class Methods
new(sync_name, options)
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 15 def initialize(sync_name, options) @options = options @sync_name = sync_name @watch_fork = nil @watch_thread = nil end
Public Instance Methods
clean()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 29 def clean end
run()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 22 def run say_status 'success', 'Watcher disabled by configuration' if @options['verbose'] end
stop()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 26 def stop end
watch()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 32 def watch end
watch_fork()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 38 def watch_fork return @watch_fork end
watch_options()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 35 def watch_options end
watch_thread()
click to toggle source
# File lib/docker-sync/watch_strategy/dummy.rb, line 42 def watch_thread return @watch_thread end