Sha256: 54338026121955a9169bf0f00e15eb521dcbdc7e5568f17e1baf7874fabb4a19
Contents?: true
Size: 425 Bytes
Versions: 11
Compression:
Stored size: 425 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require "irb" require "irb/completion" $LOAD_PATH.unshift File.expand_path("lib") require "telnyx" # Config IRB to enable --simple-prompt and auto indent IRB.conf[:PROMPT_MODE] = :SIMPLE IRB.conf[:AUTO_INDENT] = true puts "Loaded gem 'telnyx'" def load_mock_settings! Telnyx.api_base = "http://localhost:12111" Telnyx.api_key = "KEYSUPERSECRET" nil end IRB.start
Version data entries
11 entries across 11 versions & 1 rubygems