class Synco::TargetScope

Attributes

target_server[R]

Public Class Methods

new(script_scope, target) click to toggle source
Calls superclass method
# File lib/synco/scope.rb, line 216
def initialize(script_scope, target)
        super(script_scope)
        
        @target_server = ServerScope.new(target, script_scope, script_scope.current_server)
end

Public Instance Methods

run(*arguments) click to toggle source
# File lib/synco/scope.rb, line 222
def run(*arguments)
        @target_server.run(*arguments)
end