Sha256: e8d62400759d96e6abe3eb1daf500fc1f97fb35b51ed7833ac493b0fbec53857
Contents?: true
Size: 601 Bytes
Versions: 62
Compression:
Stored size: 601 Bytes
Contents
module Vagrant module Plugin module V2 class Push attr_reader :env attr_reader :config # Initializes the pusher with the given environment the push # configuration. # # @param [Environment] env # @param [Object] config Push configuration def initialize(env, config) @env = env @config = config end # This is the method called when the actual pushing should be # done. # # No return value is expected. def push end end end end end
Version data entries
62 entries across 55 versions & 7 rubygems