Sha256: 65353e54a988484ee3a22a58e2ef8d365b7d17acacbe2e7d839a36d93229b525

Contents?: true

Size: 644 Bytes

Versions: 19

Compression:

Stored size: 644 Bytes

Contents

# frozen_string_literal: true

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
task :test    => :spec
task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new
task :docs => :yard

require 'kramdown/man/task'
Kramdown::Man::Task.new

Version data entries

19 entries across 19 versions & 6 rubygems

Version Path
ronin-dns-proxy-0.1.0 Rakefile
ronin-core-0.2.0 Rakefile
ronin-payloads-0.1.6 Rakefile
ronin-dns-proxy-0.1.0.rc1 Rakefile
ronin-core-0.2.0.rc1 Rakefile
ronin-payloads-0.1.5 Rakefile
ronin-vulns-0.1.5 Rakefile
ronin-core-0.1.3 Rakefile
ronin-payloads-0.1.4 Rakefile
ronin-vulns-0.1.4 Rakefile
ronin-core-0.1.2 Rakefile
ronin-vulns-0.1.3 Rakefile
ronin-payloads-0.1.3 Rakefile
ronin-payloads-0.1.2 Rakefile
ronin-repos-0.1.1 Rakefile
ronin-payloads-0.1.1 Rakefile
ronin-vulns-0.1.2 Rakefile
ronin-web-server-0.1.1 Rakefile
ronin-core-0.1.1 Rakefile