Sha256: d93a8f2563cc63cb41db81dd46bd397eb1f9075a78b1f1313ef5a8e8be86b39a

Contents?: true

Size: 594 Bytes

Versions: 1

Compression:

Stored size: 594 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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
market_bot-0.11.0 spec/spec_helper.rb