Sha256: f3db4edf429ac7727d07f7be2607c7d36b0fdc7c206d372959895c346f03e378

Contents?: true

Size: 602 Bytes

Versions: 15

Compression:

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

require 'simplecov'
SimpleCov.start

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}

Typhoeus::Hydra.allow_net_connect = false

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

15 entries across 15 versions & 1 rubygems

Version Path
market_bot-0.10.0 spec/spec_helper.rb
market_bot-0.9.1 spec/spec_helper.rb
market_bot-0.9.0 spec/spec_helper.rb
market_bot-0.8.2 spec/spec_helper.rb
market_bot-0.8.1 spec/spec_helper.rb
market_bot-0.8.0 spec/spec_helper.rb
market_bot-0.7.0 spec/spec_helper.rb
market_bot-0.6.5 spec/spec_helper.rb
market_bot-0.6.4 spec/spec_helper.rb
market_bot-0.6.3 spec/spec_helper.rb
market_bot-0.6.2 spec/spec_helper.rb
market_bot-0.6.1 spec/spec_helper.rb
market_bot-0.6.0 spec/spec_helper.rb
market_bot-0.5.1 spec/spec_helper.rb
market_bot-0.5.0 spec/spec_helper.rb