Sha256: 651e802f8bdd83730787cc1db25527e3b18e95079b98d4012bfe6b7c0aad5ca1

Contents?: true

Size: 428 Bytes

Versions: 812

Compression:

Stored size: 428 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rdoc/task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new(:spec)

RuboCop::RakeTask.new do |rubocop|
  config_file = '.rubocop.yml'
  rubocop.options = ['-E', '-S', '-c', config_file]
end

RDoc::Task.new do |rdoc|
  rdoc.rdoc_files.include('lib/**/*.rb')
  rdoc.rdoc_dir = 'rdoc'
end

task default: %i[spec rubocop rdoc]

Version data entries

812 entries across 812 versions & 1 rubygems

Version Path
pwn-0.4.348 Rakefile
pwn-0.4.347 Rakefile
pwn-0.4.346 Rakefile
pwn-0.4.344 Rakefile
pwn-0.4.343 Rakefile
pwn-0.4.342 Rakefile
pwn-0.4.341 Rakefile
pwn-0.4.340 Rakefile
pwn-0.4.339 Rakefile
pwn-0.4.338 Rakefile
pwn-0.4.336 Rakefile
pwn-0.4.333 Rakefile