Sha256: 4969a5676206ef8c39872a938f819eee1092c6f87f8b068f21e7317e671561ab
Contents?: true
Size: 535 Bytes
Versions: 5
Compression:
Stored size: 535 Bytes
Contents
require 'rspec' require 'honeybadger' begin require 'binding_of_caller' rescue LoadError nil end # Require files in spec/support/ and its subdirectories. Dir[File.expand_path('../../spec/support/**/*.rb', __FILE__)].each {|f| require f} RSpec.configure do |c| c.mock_with :rspec c.color_enabled = true c.tty = true c.treat_symbols_as_metadata_keys_with_true_values = true c.filter_run :focus => true c.run_all_when_everything_filtered = true c.include Helpers c.after(:each) { Honeybadger.context.clear! } end
Version data entries
5 entries across 5 versions & 1 rubygems