diff --git a/Rakefile b/Rakefile index a90b5fb18..042fd11a9 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,9 @@ exec = [] begin require 'rubocop/rake_task' + RuboCop::RakeTask.new + exec << :rubocop rescue LoadError end @@ -14,9 +16,7 @@ end begin require 'rspec/core/rake_task' - RSpec::Core::RakeTask.new(:spec) do |t| - t.rspec_opts = %w{--tag ~slow} - end + RSpec::Core::RakeTask.new(:spec) { |t| t.rspec_opts = %w{--tag ~slow} } exec << :spec rescue LoadError diff --git a/lib/wpscan/version.rb b/lib/wpscan/version.rb index 30db7c242..9ed3b13b9 100644 --- a/lib/wpscan/version.rb +++ b/lib/wpscan/version.rb @@ -2,5 +2,5 @@ # Version module WPScan - VERSION = '3.7.4' + VERSION = '3.7.5' end