module Spof

Constants

VERSION

Public Class Methods

config(options = {}) click to toggle source
# File lib/spof.rb, line 13
def self.config(options = {})
  @@testing = options[:testing] || false
end
testing?() click to toggle source
# File lib/spof.rb, line 17
def self.testing?
  @@testing
end