module Nightwing

Constants

VERSION

Public Instance Methods

client() click to toggle source
# File lib/nightwing.rb, line 13
def client
  @client || internal_client
end
client=(c) click to toggle source
# File lib/nightwing.rb, line 17
def client=(c)
  @client = c
end

Private Instance Methods

internal_client() click to toggle source
# File lib/nightwing.rb, line 23
def internal_client
  @internal_client ||= Nightwing::DebugClient.new
end