Sha256: 72170cc91f658033e5a237f15b919c57ad1a58c2afa76020e97c8bacf421ddc2
Contents?: true
Size: 644 Bytes
Versions: 26
Compression:
Stored size: 644 Bytes
Contents
require "bundler" Bundler.setup(:default, :development) unless RUBY_PLATFORM =~ /java/ require "simplecov" require "coveralls" SimpleCov.formatter = Coveralls::SimpleCov::Formatter SimpleCov.start do add_filter "spec" end end require "savon" require "rspec" # don't have HTTPI lazy-load HTTPClient, because then # it can't actually be refered to inside the specs. require "httpclient" support_files = File.expand_path("spec/support/**/*.rb") Dir[support_files].each { |file| require file } RSpec.configure do |config| config.include SpecSupport config.mock_with :mocha config.order = "random" end HTTPI.log = false
Version data entries
26 entries across 26 versions & 4 rubygems