Sha256: 5f91fc3c413e53272c5d386eee5fdbd72b03844a59776f98a8de413363bce458
Contents?: true
Size: 471 Bytes
Versions: 4
Compression:
Stored size: 471 Bytes
Contents
module VagrantPlugins module CommandServe class Client class Push < Client # Generate callback and spec for required arguments # # @return [SDK::FuncSpec, Proc] def push_func spec = client.push_spec(Empty.new) cb = proc do |args| client.push(args) end [spec, cb] end # Execute push def push run_func end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems