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