Sha256: 44d5987e30eb81daaabbb6ea1a7ea11f33378cc14da1fd5a0c5a3014a130fc23

Contents?: true

Size: 507 Bytes

Versions: 9

Compression:

Stored size: 507 Bytes

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'
require 'fakeweb'
require 'http_logger'
require "logger"
require "fileutils"

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

LOGFILE = 'http.log'
RSpec.configure do |config|


  FileUtils.rm_f(LOGFILE)
  HttpLogger.logger = Logger.new(LOGFILE)
  
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
http_logger-0.5.1 spec/spec_helper.rb
http_logger-0.5.0 spec/spec_helper.rb
http_logger-0.4.3 spec/spec_helper.rb
http_logger-0.4.2 spec/spec_helper.rb
http_logger-0.4.1 spec/spec_helper.rb
http_logger-0.4.0 spec/spec_helper.rb
http_logger-0.3.3 spec/spec_helper.rb
http_logger-0.3.2 spec/spec_helper.rb
http_logger-0.3.0 spec/spec_helper.rb