Sha256: 3ef27e16ca8916267bb51411a4fdbb25df0d1c955ae9c54ee095e8f50b17ab39

Contents?: true

Size: 342 Bytes

Versions: 14

Compression:

Stored size: 342 Bytes

Contents

ENV['RACK_ENV'] = 'test'
Bundler.require :test

require 'pry'
require 'alerty'

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

ROOT = File.dirname(File.dirname(__FILE__))
def capture_stdout
  out = StringIO.new
  $stdout = out
  yield
  return out.string
ensure
  $stdout = STDOUT
end

RSpec.configure do |config|
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
alerty-0.4.0 spec/spec_helper.rb
alerty-0.3.0 spec/spec_helper.rb
alerty-0.2.3 spec/spec_helper.rb
alerty-0.2.2 spec/spec_helper.rb
alerty-0.2.1 spec/spec_helper.rb
alerty-0.2.0 spec/spec_helper.rb
alerty-0.1.1 spec/spec_helper.rb
alerty-0.1.0 spec/spec_helper.rb
alerty-0.0.9 spec/spec_helper.rb
alerty-0.0.8 spec/spec_helper.rb
alerty-0.0.7 spec/spec_helper.rb
alerty-0.0.6 spec/spec_helper.rb
alerty-0.0.5 spec/spec_helper.rb
alerty-0.0.4 spec/spec_helper.rb