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.5.235 Rakefile
pwn-0.5.234 Rakefile
pwn-0.5.233 Rakefile
pwn-0.5.232 Rakefile
pwn-0.5.231 Rakefile
pwn-0.5.230 Rakefile
pwn-0.5.229 Rakefile
pwn-0.5.228 Rakefile
pwn-0.5.227 Rakefile
pwn-0.5.226 Rakefile
pwn-0.5.225 Rakefile
pwn-0.5.224 Rakefile
pwn-0.5.223 Rakefile
pwn-0.5.222 Rakefile
pwn-0.5.221 Rakefile
pwn-0.5.220 Rakefile
pwn-0.5.219 Rakefile
pwn-0.5.217 Rakefile
pwn-0.5.216 Rakefile
pwn-0.5.215 Rakefile