module RoxClient::RSpec

Utilities to send test results to ROX Center.

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/rox-client-rspec/config.rb, line 6
def self.config
  @config ||= Config.new.tap(&:load)
end
configure(options = {}) { |config| ... } click to toggle source
# File lib/rox-client-rspec/config.rb, line 10
def self.configure options = {}
  yield config if block_given?
  config.load_warnings.each{ |w| warn Paint["ROX - #{w}", :yellow] }
  config.setup! if options[:setup] != false
  config
end