Sha256: 372924fe174a8091e7d942ea8f11ec933186a7bb5cc46ccafa2ead57f97989fe

Contents?: true

Size: 756 Bytes

Versions: 6

Compression:

Stored size: 756 Bytes

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ronin-exploits-1.0.6 Rakefile
ronin-exploits-1.0.5 Rakefile
ronin-exploits-1.0.4 Rakefile
ronin-exploits-1.0.3 Rakefile
ronin-exploits-1.0.2 Rakefile
ronin-exploits-1.0.1 Rakefile