Sha256: 107109726e89265628cfbbae0062c650d9c3186cddca4590692fe00ca00bfddf
Contents?: true
Size: 724 Bytes
Versions: 4
Compression:
Stored size: 724 Bytes
Contents
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
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ronin-exploits-1.0.0 | Rakefile |
ronin-exploits-1.0.0.beta3 | Rakefile |
ronin-exploits-1.0.0.beta2 | Rakefile |
ronin-exploits-1.0.0.beta1 | Rakefile |