module Fortenet
Constants
- VERSION
Public Class Methods
configure() { |self| ... }
click to toggle source
# File lib/fortenet.rb, line 27 def self.configure yield self end
debug=(flag)
click to toggle source
# File lib/fortenet.rb, line 14 def self.debug=(flag) @@debug = flag Fortenet::Request.default_options.delete(:debug_output) unless flag end
debug_output=(output)
click to toggle source
# File lib/fortenet.rb, line 19 def self.debug_output=(output) return unless debug Fortenet::Request.debug_output(output) end