Sha256: 58339c90bed8e8352009ed575dc2b4f567cce4143ea8ea38f15b3808a6f78244

Contents?: true

Size: 663 Bytes

Versions: 5

Compression:

Stored size: 663 Bytes

Contents

$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

5 entries across 5 versions & 1 rubygems

Version Path
market_bot-0.14.0 spec/spec_helper.rb
market_bot-0.13.0 spec/spec_helper.rb
market_bot-0.12.2 spec/spec_helper.rb
market_bot-0.12.1 spec/spec_helper.rb
market_bot-0.12.0 spec/spec_helper.rb