diff --git a/.gitignore b/.gitignore index b8d65eaeb..905997e6f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,11 +6,16 @@ custom-config.yaml .DS_Store .gitignore .rvmrc +beef.log *.lock extensions/metasploit/msf-exploits.cache +# ruby debugging +.byebug_history + + # The following lines were created by https://www.gitignore.io ### Linux ### diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2958b560e..758551085 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -23,10 +23,10 @@ ENV['RACK_ENV'] ||= 'test' RSpec.configure do |config| config.disable_monkey_patching! + config.bisect_runner = :shell config.include Rack::Test::Methods config.expect_with :rspec do |c| c.syntax = :expect end - config.order = :random - Kernel.srand config.seed + end