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.417 Rakefile
pwn-0.4.415 Rakefile
pwn-0.4.414 Rakefile
pwn-0.4.413 Rakefile
pwn-0.4.412 Rakefile
pwn-0.4.411 Rakefile
pwn-0.4.410 Rakefile
pwn-0.4.409 Rakefile
pwn-0.4.407 Rakefile
pwn-0.4.406 Rakefile
pwn-0.4.405 Rakefile
pwn-0.4.404 Rakefile
pwn-0.4.403 Rakefile
pwn-0.4.402 Rakefile
pwn-0.4.401 Rakefile
pwn-0.4.400 Rakefile
pwn-0.4.399 Rakefile
pwn-0.4.398 Rakefile
pwn-0.4.396 Rakefile
pwn-0.4.394 Rakefile