class Object

Public Instance Methods

reload!() click to toggle source
# File lib/dev/zeitwerk_loader.rb, line 17
def reload!
  $__sendle_api_loader__.reload
  set_config
  true
end
set_config() click to toggle source
# File lib/dev/config.rb, line 3
def set_config
  SendleAPI.configure do |config|
    config.sendle_id = ENV["SENDLE_ID"] 
    config.api_key = ENV["SENDLE_API_KEY"]
    config.testing = true
  end
end