Sha256: fcade402a49ef703ddb22d0fa1b0c2cc241ca8d873fc083ace67c9126558b928

Contents?: true

Size: 541 Bytes

Versions: 8

Compression:

Stored size: 541 Bytes

Contents

# encoding: binary

require 'bundler/setup'
require 'rspec'

require "effin_utf8"

begin
  require 'simplecov'

  SimpleCov.start do
    add_filter '/spec/'
  end
rescue LoadError
end

$: << File.expand_path('../../lib', __FILE__)

require "amq/protocol"

puts "Running on #{RUBY_VERSION}"

module RubyVersionsSupport
  def one_point_eight?
    RUBY_VERSION =~ /^1.8/
  end
end # RubyVersionsSUpport


RSpec.configure do |config|
  config.include AMQ::Protocol

  config.include(RubyVersionsSupport)
  config.extend(RubyVersionsSupport)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
amq-protocol-1.9.2 spec/spec_helper.rb
amq-protocol-1.9.1 spec/spec_helper.rb
amq-protocol-1.9.0 spec/spec_helper.rb
amq-protocol-1.8.0 spec/spec_helper.rb
amq-protocol-1.7.0 spec/spec_helper.rb
amq-protocol-1.6.0 spec/spec_helper.rb
amq-protocol-1.5.0 spec/spec_helper.rb
amq-protocol-1.4.0 spec/spec_helper.rb