diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 9db627ea..00000000 --- a/.dockerignore +++ /dev/null @@ -1,21 +0,0 @@ -.* -bin/ -dev/ -spec/ -*.md -Dockerfile - -## TEMP -.idea/ -.yardoc/ -bundle/ -cache/ -coverage/ -git/ -**/*.md -**/*.orig -*.orig -CREDITS -data.zip -DISCLAIMER.txt -example.conf.json diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ee7fb0af..00000000 --- a/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -# WPScan (If not using ~/.wpscan/) -cache/ -data/ -log.txt -output.txt - -# WPScan (Deployment) -debug.log -rspec_results.html -wordlist.txt - -# OS/IDE Rubbish -coverage/ -.yardoc/ -.idea/ -*.sublime-* -.*.swp -.ash_history -.bundle -.DS_Store -.DS_Store? \ No newline at end of file diff --git a/.rspec b/.rspec deleted file mode 100644 index ba44b749..00000000 --- a/.rspec +++ /dev/null @@ -1,2 +0,0 @@ ---color ---fail-fast diff --git a/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index 7e8f93bd..00000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -wpscan diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 73462a5a..00000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.5.1 diff --git a/.simplecov b/.simplecov deleted file mode 100644 index 8781bcb4..00000000 --- a/.simplecov +++ /dev/null @@ -1,8 +0,0 @@ -SimpleCov.start do - add_filter "/spec/" - add_filter "_helper.rb" - add_filter "environment.rb" - add_filter "_plugin.rb" - add_filter "hacks.rb" - add_filter "output.rb" -end diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e79a6973..00000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -language: ruby -sudo: false -cache: bundler -rvm: - - 2.1.9 - - 2.2.0 - - 2.2.1 - - 2.2.2 - - 2.2.3 - - 2.2.4 - - 2.3.0 - - 2.3.1 - - 2.3.2 - - 2.3.3 - - 2.4.1 - - 2.4.2 - - 2.5.0 - - 2.5.1 - - ruby-head -before_install: - - "env" - - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - - "gem install bundler" - - "gem regenerate_binstubs" - - "bundle --version" -before_script: - - "unzip -o $TRAVIS_BUILD_DIR/data.zip -d $HOME/.wpscan/" -script: - - "bundle exec rspec" -notifications: - email: - - team@wpscan.org -# do not build gh-pages branch -branches: - except: - - gh-pages