module Jaguar
Constants
- C
- VERSION
Public Class Methods
debug(*args)
click to toggle source
# File lib/jaguar.rb, line 25 def self.debug(*args) return unless ENV["JAGUAR_DEBUG"] == "yes" print "JAGUAR DEBUG: " for arg in args arg_formatted = case arg when String arg else arg.inspect end print arg_formatted print " " end puts "" nil end
driver()
click to toggle source
# File lib/jaguar.rb, line 14 def self.driver @@driver end
driver=(d)
click to toggle source
# File lib/jaguar.rb, line 19 def self.driver=(d) @@driver = d nil end