Sha256: b0540267c1bc3f3b4d0926a6afaa1a1cbf6f7a38a6e5ff1f9dda773d9919f676
Contents?: true
Size: 845 Bytes
Versions: 7
Compression:
Stored size: 845 Bytes
Contents
# Equivalent to a header guard in C/C++ # Used to prevent the spec helper from being loaded more than once unless defined? BONES_SPEC_HELPER BONES_SPEC_HELPER = true require 'stringio' require File.expand_path( File.join(File.dirname(__FILE__), %w[.. lib bones])) RSpec.configure do |config| # == Mock Framework # # RSpec uses it's own mocking framework by default. If you prefer to # use mocha, flexmock or RR, uncomment the appropriate line: # # config.mock_with :mocha # config.mock_with :flexmock # config.mock_with :rr end class StringIO alias :_readline :readline def readline @_pos ||= 0 seek @_pos begin _line = _readline @_pos = tell _line.rstrip rescue EOFError nil end end def clear truncate 0 seek 0 @_pos = 0 end end end # unless defined?
Version data entries
7 entries across 7 versions & 1 rubygems