module Slappy
Constants
- VERSION
Public Class Methods
client()
click to toggle source
# File lib/slappy.rb, line 29 def client @client ||= Client.new end
configuration()
click to toggle source
# File lib/slappy.rb, line 25 def configuration @configuration || configure end
configure() { |configuration| ... }
click to toggle source
# File lib/slappy.rb, line 17 def configure @configuration = Configuration.new yield configuration if block_given? configuration end