class Object

Public Instance Methods

reload!() click to toggle source
# File lib/dev/zeitwerk_loader.rb, line 18
def reload!
  $__vncpost_api_loader__.reload
  set_config
  true
end
set_config() click to toggle source
# File lib/dev/config.rb, line 1
def set_config
  VNCPostAPI.configure do |config|
    config.testing = true 
    config.username = ENV["VNCPOST_USERNAME"]
    config.password = ENV["VNCPOST_PASSWORD"]
  end
end