updated the gitignore and stop the random tests

This commit is contained in:
Centos 7 beef VM
2019-12-09 19:29:12 -08:00
2 changed files with 7 additions and 2 deletions

5
.gitignore vendored
View File

@@ -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 ###

View File

@@ -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