module LucidHttp

Constants

VERSION

Public Class Methods

target_url() click to toggle source
# File lib/lucid_http.rb, line 7
def self.target_url
  @target_url ||= ENV.fetch("TARGET_URL") { "http://localhost:9292" }
end
target_url=(url="http://localhost:9292") click to toggle source
# File lib/lucid_http.rb, line 11
def self.target_url=(url="http://localhost:9292")
  @target_url = url
end