class TurboRex::MSRPC::RPCFinder::ImageFinder::AutoFindConf

Public Class Methods

new() click to toggle source
# File lib/turborex/msrpc/rpcfinder.rb, line 135
def initialize
  @options = {
    include_client: true,
    find_client_routines: false
  }
end

Public Instance Methods

build() click to toggle source
# File lib/turborex/msrpc/rpcfinder.rb, line 142
def build
  @options
end
exclude_client() click to toggle source
# File lib/turborex/msrpc/rpcfinder.rb, line 146
def exclude_client
  @options[:include_client] = false
end
Also aliased as: only_server
find_client_routines() click to toggle source
# File lib/turborex/msrpc/rpcfinder.rb, line 154
def find_client_routines
  @options[:find_client_routines] = true if @options[:include_client]
end
only_client() click to toggle source
# File lib/turborex/msrpc/rpcfinder.rb, line 150
def only_client
  @options[:only_client] = true
end
only_server()
Alias for: exclude_client