class Raykit::Secrets
def save
def save if ENV.key?("RAYKIT_SECRETS_PATH") secrets_file = ENV["RAYKIT_SECRETS_PATH"] File.open(secrets_file, "w") { |f| f.puts to_json } end end
def save if ENV.key?("RAYKIT_SECRETS_PATH") secrets_file = ENV["RAYKIT_SECRETS_PATH"] File.open(secrets_file, "w") { |f| f.puts to_json } end end