Sha256: 651e802f8bdd83730787cc1db25527e3b18e95079b98d4012bfe6b7c0aad5ca1

Contents?: true

Size: 428 Bytes

Versions: 813

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

813 entries across 813 versions & 1 rubygems

Version Path
pwn-0.5.153 Rakefile
pwn-0.5.152 Rakefile
pwn-0.5.151 Rakefile
pwn-0.5.150 Rakefile
pwn-0.5.106 Rakefile
pwn-0.5.105 Rakefile
pwn-0.5.104 Rakefile
pwn-0.5.103 Rakefile
pwn-0.5.102 Rakefile
pwn-0.5.101 Rakefile
pwn-0.5.100 Rakefile
pwn-0.5.99 Rakefile
pwn-0.5.98 Rakefile
pwn-0.5.97 Rakefile
pwn-0.5.96 Rakefile
pwn-0.5.95 Rakefile
pwn-0.5.94 Rakefile
pwn-0.5.93 Rakefile
pwn-0.5.92 Rakefile
pwn-0.5.91 Rakefile