Sha256: 2248ed5bfbe05c8ab7a655e67d7c0214f2404eea4997101e536ec1fc41397593
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require 'rubygems' begin require 'bundler' rescue LoadError => e warn e.message warn "Run `gem install bundler` to install Bundler." exit(-1) end begin Bundler.setup(:development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'rubygems/tasks' Gem::Tasks.new(sign: {checksum: true, pgp: true}) require 'rspec/core/rake_task' RSpec::Core::RakeTask.new namespace :spec do RSpec::Core::RakeTask.new(:network) do |t| t.rspec_opts = '--tag network' end end task :test => :spec task :default => :spec require 'yard' YARD::Rake::YardocTask.new require 'kramdown/man/task' Kramdown::Man::Task.new require 'command_kit/completion/task' CommandKit::Completion::Task.new( class_file: 'ronin/exploits/cli', class_name: 'Ronin::Exploits::CLI', input_file: 'data/completions/ronin-exploits.yml', output_file: 'data/completions/ronin-exploits' ) task :setup => %w[man command_kit:completion]
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ronin-exploits-1.1.1 | Rakefile |
ronin-exploits-1.1.0 | Rakefile |
ronin-exploits-1.1.0.rc2 | Rakefile |
ronin-exploits-1.1.0.rc1 | Rakefile |