Sha256: b411d539513e507cc167227e87cfe8917666d9931043c8828d2661adbdd17f00

Contents?: true

Size: 700 Bytes

Versions: 3

Compression:

Stored size: 700 Bytes

Contents

require 'coveralls'
Coveralls.wear!

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'

begin
  require 'debugger'
rescue Exception => e
end

begin
  require 'simplecov'
  SimpleCov.start
rescue Exception => e
end

require 'market_bot'

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

RSpec.configure do |config|
end

Typhoeus.configure do |config|
  config.block_connection = true
end

def read_file(*path)
  data = nil
  File.open(File.join(path), 'r') { |f| data = f.read }
  return data
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
market_bot-0.16.0 spec/spec_helper.rb
market_bot-0.15.1 spec/spec_helper.rb
market_bot-0.15.0 spec/spec_helper.rb