Sha256: dad6aff3089575fe87410e97afb7225a9f1bb5c041bd15417d63b835de6d50c3

Contents?: true

Size: 307 Bytes

Versions: 2

Compression:

Stored size: 307 Bytes

Contents

# encoding: UTF-8
require 'bundler/setup'

require 'rspec/core'
require 'bzip2'


RSpec.configure do |config|
  config.color_enabled = true
end

# back-port 1.9 method so the tests will pass in 1.8 as well
if RUBY_VERSION.include?("1.8")
  class String
    def getbyte(idx)
      self[idx]
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
bzip2-ruby-rb20-0.2.7 spec/spec_helper.rb
bzip2-ruby-0.2.7 spec/spec_helper.rb