class Vagrant::Plugin::V2::Push

Attributes

config[R]
env[R]

Public Class Methods

new(env, config) click to toggle source

Initializes the pusher with the given environment the push configuration.

@param [Environment] env @param [Object] config Push configuration

# File lib/vagrant/plugin/v2/push.rb, line 13
def initialize(env, config)
  @env     = env
  @config  = config
end

Public Instance Methods

push() click to toggle source

This is the method called when the actual pushing should be done.

No return value is expected.

# File lib/vagrant/plugin/v2/push.rb, line 22
def push
end